| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium 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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'base_target': 0, | 8 'base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| 11 # This part is shared between the targets defined below. | 11 # This part is shared between the targets defined below. |
| 12 ['base_target==1', { | 12 ['base_target==1', { |
| 13 'sources': [ | 13 'sources': [ |
| 14 '../build/build_config.h', | 14 '../build/build_config.h', |
| 15 'third_party/dmg_fp/dmg_fp.h', | 15 'third_party/dmg_fp/dmg_fp.h', |
| 16 'third_party/dmg_fp/g_fmt.cc', | 16 'third_party/dmg_fp/g_fmt.cc', |
| 17 'third_party/dmg_fp/dtoa_wrapper.cc', | 17 'third_party/dmg_fp/dtoa_wrapper.cc', |
| 18 'third_party/icu/icu_utf.cc', | 18 'third_party/icu/icu_utf.cc', |
| 19 'third_party/icu/icu_utf.h', | 19 'third_party/icu/icu_utf.h', |
| 20 'third_party/nspr/prtime.cc', | |
| 21 'third_party/nspr/prtime.h', | |
| 22 'third_party/nspr/prcpucfg_linux.h', | |
| 23 'third_party/xdg_mime/xdgmime.h', | 20 'third_party/xdg_mime/xdgmime.h', |
| 24 'allocator/allocator_extension.cc', | 21 'allocator/allocator_extension.cc', |
| 25 'allocator/allocator_extension.h', | 22 'allocator/allocator_extension.h', |
| 26 'allocator/type_profiler_control.cc', | 23 'allocator/type_profiler_control.cc', |
| 27 'allocator/type_profiler_control.h', | 24 'allocator/type_profiler_control.h', |
| 28 'android/base_jni_registrar.cc', | 25 'android/base_jni_registrar.cc', |
| 29 'android/base_jni_registrar.h', | 26 'android/base_jni_registrar.h', |
| 30 'android/build_info.cc', | 27 'android/build_info.cc', |
| 31 'android/build_info.h', | 28 'android/build_info.h', |
| 32 'android/scoped_java_ref.cc', | 29 'android/scoped_java_ref.cc', |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 719 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
| 723 # command-line-string limitation when building NaCl on Windows. | 720 # command-line-string limitation when building NaCl on Windows. |
| 724 ['OS == "win" and >(nacl_untrusted_build)==1', { | 721 ['OS == "win" and >(nacl_untrusted_build)==1', { |
| 725 'sources/': [ ['exclude', '\\.h$'] ], | 722 'sources/': [ ['exclude', '\\.h$'] ], |
| 726 }], | 723 }], |
| 727 ], | 724 ], |
| 728 }], | 725 }], |
| 729 ], | 726 ], |
| 730 }, | 727 }, |
| 731 } | 728 } |
| OLD | NEW |