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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'clang_use_chrome_plugins%': 0, | 45 'clang_use_chrome_plugins%': 0, |
46 }, | 46 }, |
47 'clang_dir%': 'third_party/llvm-build/Release+Asserts', | 47 'clang_dir%': 'third_party/llvm-build/Release+Asserts', |
48 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', | 48 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', |
49 # These two are needed by V8. | 49 # These two are needed by V8. |
50 'host_arch%': '<(host_arch)', | 50 'host_arch%': '<(host_arch)', |
51 'target_arch%': '<(target_arch)', | 51 'target_arch%': '<(target_arch)', |
52 'werror%': '-Werror', | 52 'werror%': '-Werror', |
53 'v8_optimized_debug%': 0, | 53 'v8_optimized_debug%': 0, |
54 'v8_use_external_startup_data%': 0, | 54 'v8_use_external_startup_data%': 0, |
| 55 'icu_use_data_file_flag%': 1, |
55 'icu_gyp_path': '../third_party/icu/icu.gyp', | 56 'icu_gyp_path': '../third_party/icu/icu.gyp', |
56 'libjpeg_gyp_path': '../third_party/third_party.gyp', | 57 'libjpeg_gyp_path': '../third_party/third_party.gyp', |
57 'conditions': [ | 58 'conditions': [ |
58 ['OS == "win"', { | 59 ['OS == "win"', { |
59 'os_posix%': 0, | 60 'os_posix%': 0, |
60 }, { | 61 }, { |
61 'os_posix%': 1, | 62 'os_posix%': 1, |
62 }], | 63 }], |
63 ['OS=="linux" or OS=="mac"', { | 64 ['OS=="linux" or OS=="mac"', { |
64 'clang%': 1, | 65 'clang%': 1, |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 ], | 583 ], |
583 }], # OS=="win" | 584 }], # OS=="win" |
584 ["use_goma==1", { | 585 ["use_goma==1", { |
585 'make_global_settings': [ | 586 'make_global_settings': [ |
586 ['CC_wrapper', '<(gomadir)/gomacc'], | 587 ['CC_wrapper', '<(gomadir)/gomacc'], |
587 ['CXX_wrapper', '<(gomadir)/gomacc'], | 588 ['CXX_wrapper', '<(gomadir)/gomacc'], |
588 ], | 589 ], |
589 }], # use_goma==1 | 590 }], # use_goma==1 |
590 ], | 591 ], |
591 } | 592 } |
OLD | NEW |