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/allocator_extension.cc', | 24 'allocator/allocator_extension.cc', |
25 'allocator/allocator_extension.h', | 25 'allocator/allocator_extension.h', |
| 26 'allocator/type_profiler_control.cc', |
| 27 'allocator/type_profiler_control.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', |
34 'android/jni_array.cc', | 36 'android/jni_array.cc', |
35 'android/jni_array.h', | 37 'android/jni_array.h', |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 }], | 548 }], |
547 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { | 549 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt
rusted_build)==1', { |
548 'sources!': [ | 550 'sources!': [ |
549 # Not automatically excluded by the *linux.cc rules. | 551 # Not automatically excluded by the *linux.cc rules. |
550 'linux_util.cc', | 552 'linux_util.cc', |
551 ], | 553 ], |
552 }, | 554 }, |
553 ], | 555 ], |
554 ['>(nacl_untrusted_build)==1', { | 556 ['>(nacl_untrusted_build)==1', { |
555 'sources!': [ | 557 'sources!': [ |
| 558 'allocator/type_profiler_control.cc', |
| 559 'allocator/type_profiler_control.h', |
556 'base_paths.cc', | 560 'base_paths.cc', |
557 'command_line.cc', | 561 'command_line.cc', |
558 'cpu.cc', | 562 'cpu.cc', |
559 'debug/stack_trace_posix.cc', | 563 'debug/stack_trace_posix.cc', |
560 'file_util.cc', | 564 'file_util.cc', |
561 'file_util_posix.cc', | 565 'file_util_posix.cc', |
562 'file_util_proxy.cc', | 566 'file_util_proxy.cc', |
563 'files/file_path_watcher_kqueue.cc', | 567 'files/file_path_watcher_kqueue.cc', |
564 'native_library_posix.cc', | 568 'native_library_posix.cc', |
565 'path_service.cc', | 569 'path_service.cc', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 692 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
689 # command-line-string limitation when building NaCl on Windows. | 693 # command-line-string limitation when building NaCl on Windows. |
690 ['OS == "win" and >(nacl_untrusted_build)==1', { | 694 ['OS == "win" and >(nacl_untrusted_build)==1', { |
691 'sources/': [ ['exclude', '\\.h$'] ], | 695 'sources/': [ ['exclude', '\\.h$'] ], |
692 }], | 696 }], |
693 ], | 697 ], |
694 }], | 698 }], |
695 ], | 699 ], |
696 }, | 700 }, |
697 } | 701 } |
OLD | NEW |