| OLD | NEW |
| 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 'chromium_code%': 0, | 10 'chromium_code%': 0, |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'host_arch%': '<(host_arch)', | 43 'host_arch%': '<(host_arch)', |
| 44 'target_arch%': '<(target_arch)', | 44 'target_arch%': '<(target_arch)', |
| 45 }, | 45 }, |
| 46 'clang_dir%': 'third_party/llvm-build/Release+Asserts', | 46 'clang_dir%': 'third_party/llvm-build/Release+Asserts', |
| 47 # These two are needed by V8. | 47 # These two are needed by V8. |
| 48 'host_arch%': '<(host_arch)', | 48 'host_arch%': '<(host_arch)', |
| 49 'target_arch%': '<(target_arch)', | 49 'target_arch%': '<(target_arch)', |
| 50 'werror%': '-Werror', | 50 'werror%': '-Werror', |
| 51 'v8_optimized_debug%': 0, | 51 'v8_optimized_debug%': 0, |
| 52 'v8_use_external_startup_data%': 0, | 52 'v8_use_external_startup_data%': 0, |
| 53 'icu_use_data_file_flag%': 1, |
| 53 'icu_gyp_path': '../third_party/icu/icu.gyp', | 54 'icu_gyp_path': '../third_party/icu/icu.gyp', |
| 54 'libjpeg_gyp_path': '../third_party/third_party.gyp', | 55 'libjpeg_gyp_path': '../third_party/third_party.gyp', |
| 55 'conditions': [ | 56 'conditions': [ |
| 56 ['OS == "win"', { | 57 ['OS == "win"', { |
| 57 'os_posix%': 0, | 58 'os_posix%': 0, |
| 58 }, { | 59 }, { |
| 59 'os_posix%': 1, | 60 'os_posix%': 1, |
| 60 }], | 61 }], |
| 61 ['OS=="linux" or OS=="mac"', { | 62 ['OS=="linux" or OS=="mac"', { |
| 62 'clang%': 1, | 63 'clang%': 1, |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 ], | 531 ], |
| 531 }], # OS=="win" | 532 }], # OS=="win" |
| 532 ["use_goma==1", { | 533 ["use_goma==1", { |
| 533 'make_global_settings': [ | 534 'make_global_settings': [ |
| 534 ['CC_wrapper', '<(gomadir)/gomacc'], | 535 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 535 ['CXX_wrapper', '<(gomadir)/gomacc'], | 536 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 536 ], | 537 ], |
| 537 }], # use_goma==1 | 538 }], # use_goma==1 |
| 538 ], | 539 ], |
| 539 } | 540 } |
| OLD | NEW |