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

Side by Side Diff: build_gyp/standalone.gypi

Issue 1933843002: Use utilities from build directory instead of own copies (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: fix Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « build_gyp/mac_find_sdk.py ('k') | build_gyp/vs_toolchain.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Definitions to be used when building stand-alone PDFium binaries. 5 # Definitions to be used when building stand-alone PDFium binaries.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'component%': 'static_library', 9 'component%': 'static_library',
10 'clang%': 0, 10 'clang%': 0,
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 ], 446 ],
447 }], # OS=="win" 447 }], # OS=="win"
448 ['OS=="mac"', { 448 ['OS=="mac"', {
449 'target_conditions': [ 449 'target_conditions': [
450 ['_type!="static_library"', { 450 ['_type!="static_library"', {
451 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 451 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
452 }], 452 }],
453 ], # target_conditions 453 ], # target_conditions
454 'variables': { 454 'variables': {
455 'mac_sdk_min': '10.10', 455 'mac_sdk_min': '10.10',
456 'mac_sdk%': '<!(python <(DEPTH)/build_gyp/mac_find_sdk.py <(mac_sdk_mi n))', 456 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))' ,
457 }, 457 },
458 'xcode_settings': { 458 'xcode_settings': {
459 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot 459 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
460 # See comment in Chromium's common.gypi for why this is needed. 460 # See comment in Chromium's common.gypi for why this is needed.
461 'SYMROOT': '<(DEPTH)/xcodebuild', 461 'SYMROOT': '<(DEPTH)/xcodebuild',
462 }, 462 },
463 }], # OS=="mac" 463 }], # OS=="mac"
464 ['v8_use_external_startup_data==1', { 464 ['v8_use_external_startup_data==1', {
465 'defines': [ 465 'defines': [
466 'V8_USE_EXTERNAL_STARTUP_DATA', 466 'V8_USE_EXTERNAL_STARTUP_DATA',
(...skipping 30 matching lines...) Expand all
497 ], 497 ],
498 }], # OS=="win" 498 }], # OS=="win"
499 ["use_goma==1", { 499 ["use_goma==1", {
500 'make_global_settings': [ 500 'make_global_settings': [
501 ['CC_wrapper', '<(gomadir)/gomacc'], 501 ['CC_wrapper', '<(gomadir)/gomacc'],
502 ['CXX_wrapper', '<(gomadir)/gomacc'], 502 ['CXX_wrapper', '<(gomadir)/gomacc'],
503 ], 503 ],
504 }], # use_goma==1 504 }], # use_goma==1
505 ], 505 ],
506 } 506 }
OLDNEW
« no previous file with comments | « build_gyp/mac_find_sdk.py ('k') | build_gyp/vs_toolchain.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698