summaryrefslogtreecommitdiff
path: root/build/gyp_pdfium
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-04-19 11:04:01 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-19 11:04:02 -0700
commitc37b04e80aafc8437d458ced2366f825749ae2d7 (patch)
tree695828739b07bd9ede2dcfe5b84f6bfb148278de /build/gyp_pdfium
parenta28ae388f3859c52630deb6ef3d0ea468e5177e3 (diff)
downloadpdfium-c37b04e80aafc8437d458ced2366f825749ae2d7.tar.xz
Move build/ to build_gyp/.
This CL moves the build/ files to build_gyp/ in anticipation of pulling in Chromiums build/ directory. The gyp_pdfium files have been duplicated into both places. Once the bots are updated we'll remove the build/ versions. BUG=pdfium:106 Review URL: https://codereview.chromium.org/1900913003
Diffstat (limited to 'build/gyp_pdfium')
-rwxr-xr-xbuild/gyp_pdfium6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/gyp_pdfium b/build/gyp_pdfium
index fca2ca39b6..3dbbbeea75 100755
--- a/build/gyp_pdfium
+++ b/build/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'])