| 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', | 20 'third_party/nspr/prtime.cc', |
| 21 'third_party/nspr/prtime.h', | 21 'third_party/nspr/prtime.h', |
| 22 'third_party/nspr/prcpucfg_linux.h', | 22 'third_party/nspr/prcpucfg_linux.h', |
| 23 'third_party/xdg_mime/xdgmime.h', | 23 'third_party/xdg_mime/xdgmime.h', |
| 24 'allocator/allocated_type_control.cc', |
| 25 'allocator/allocated_type_control.h', |
| 24 'allocator/allocator_extension.cc', | 26 'allocator/allocator_extension.cc', |
| 25 'allocator/allocator_extension.h', | 27 'allocator/allocator_extension.h', |
| 26 'android/base_jni_registrar.cc', | 28 'android/base_jni_registrar.cc', |
| 27 'android/base_jni_registrar.h', | 29 'android/base_jni_registrar.h', |
| 28 'android/build_info.cc', | 30 'android/build_info.cc', |
| 29 'android/build_info.h', | 31 'android/build_info.h', |
| 30 'android/scoped_java_ref.cc', | 32 'android/scoped_java_ref.cc', |
| 31 'android/scoped_java_ref.h', | 33 'android/scoped_java_ref.h', |
| 32 'android/jni_android.cc', | 34 'android/jni_android.cc', |
| 33 'android/jni_android.h', | 35 'android/jni_android.h', |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 }], | 541 }], |
| 540 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { | 542 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { |
| 541 'sources!': [ | 543 'sources!': [ |
| 542 # Not automatically excluded by the *linux.cc rules. | 544 # Not automatically excluded by the *linux.cc rules. |
| 543 'linux_util.cc', | 545 'linux_util.cc', |
| 544 ], | 546 ], |
| 545 }, | 547 }, |
| 546 ], | 548 ], |
| 547 ['>(nacl_untrusted_build)==1', { | 549 ['>(nacl_untrusted_build)==1', { |
| 548 'sources!': [ | 550 'sources!': [ |
| 551 'allocator/allocated_type_control.cc', |
| 552 'allocator/allocated_type_control.h', |
| 549 'base_paths.cc', | 553 'base_paths.cc', |
| 550 'command_line.cc', | 554 'command_line.cc', |
| 551 'cpu.cc', | 555 'cpu.cc', |
| 552 'debug/stack_trace_posix.cc', | 556 'debug/stack_trace_posix.cc', |
| 553 'file_util.cc', | 557 'file_util.cc', |
| 554 'file_util_posix.cc', | 558 'file_util_posix.cc', |
| 555 'file_util_proxy.cc', | 559 'file_util_proxy.cc', |
| 556 'files/file_path_watcher_kqueue.cc', | 560 'files/file_path_watcher_kqueue.cc', |
| 557 'native_library_posix.cc', | 561 'native_library_posix.cc', |
| 558 'path_service.cc', | 562 'path_service.cc', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 682 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
| 679 # command-line-string limitation when building NaCl on Windows. | 683 # command-line-string limitation when building NaCl on Windows. |
| 680 ['OS == "win" and >(nacl_untrusted_build)==1', { | 684 ['OS == "win" and >(nacl_untrusted_build)==1', { |
| 681 'sources/': [ ['exclude', '\\.h$'] ], | 685 'sources/': [ ['exclude', '\\.h$'] ], |
| 682 }], | 686 }], |
| 683 ], | 687 ], |
| 684 }], | 688 }], |
| 685 ], | 689 ], |
| 686 }, | 690 }, |
| 687 } | 691 } |
| OLD | NEW |