Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5349)

Unified Diff: build_gyp/gyp_pdfium

Issue 1900913003: Move build/ to build_gyp/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build_gyp/gyp_pdfium
diff --git a/build/gyp_pdfium b/build_gyp/gyp_pdfium
similarity index 84%
copy from build/gyp_pdfium
copy to build_gyp/gyp_pdfium
index fca2ca39b69977b01b105b53bf62271a880bd7f4..3dbbbeea75d8b353a7882077c9f1569aa967e710 100755
--- a/build/gyp_pdfium
+++ b/build_gyp/gyp_pdfium
@@ -14,7 +14,7 @@ import sys
script_dir = os.path.dirname(os.path.realpath(__file__))
pdfium_root = os.path.abspath(os.path.join(script_dir, os.pardir))
-sys.path.insert(0, os.path.join(pdfium_root, 'build', 'gyp', 'pylib'))
+sys.path.insert(0, os.path.join(pdfium_root, 'build_gyp', 'gyp', 'pylib'))
import gyp
@@ -27,10 +27,10 @@ def run_gyp(args):
def main():
args = sys.argv[1:]
- args.append(os.path.join(script_dir, 'all.gyp'))
+ args.append(os.path.join(pdfium_root, 'build_gyp', 'all.gyp'))
args.append('-I')
- args.append(os.path.join(pdfium_root, 'build', 'standalone.gypi'))
+ args.append(os.path.join(pdfium_root, 'build_gyp', 'standalone.gypi'))
args.extend(['-D', 'gyp_output_dir=out'])
« build/gyp_pdfium ('K') | « build_gyp/all.gyp ('k') | build_gyp/gyp_pdfium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698