Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: adblockplus/build.py

Issue 6302236728623104: Add Adblock Plus API (Closed)
Patch Set: Rebase after change in http://codereview.adblockplus.org/5924365505921024 Created March 17, 2015, 3:30 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « adblockplus/Api.jsm ('k') | adblockplus/metadata.gecko » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # coding: utf-8
3
4 import os
5 import sys
6
7 import buildtools.build
8 import buildtools.packager
9
10 BUILD_DIR = os.path.dirname(os.path.abspath(__file__))
11 BASE_DIR = os.path.join(BUILD_DIR, "adblockplus")
12
13 def getMetadataPath(baseDir, type):
14 return os.path.join(BUILD_DIR, "metadata.gecko")
15
16 buildtools.packager.getMetadataPath = getMetadataPath
17 buildtools.build.processArgs(BASE_DIR, sys.argv)
OLDNEW
« no previous file with comments | « adblockplus/Api.jsm ('k') | adblockplus/metadata.gecko » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld