| 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': [ |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 'process_util.cc', | 587 'process_util.cc', |
| 588 'process_util_posix.cc', | 588 'process_util_posix.cc', |
| 589 'rand_util_posix.cc', | 589 'rand_util_posix.cc', |
| 590 'scoped_native_library.cc', | 590 'scoped_native_library.cc', |
| 591 'scoped_temp_dir.cc', | 591 'scoped_temp_dir.cc', |
| 592 'shared_memory_posix.cc', | 592 'shared_memory_posix.cc', |
| 593 'sys_info_posix.cc', | 593 'sys_info_posix.cc', |
| 594 'threading/sequenced_worker_pool.cc', | 594 'threading/sequenced_worker_pool.cc', |
| 595 'third_party/dynamic_annotations/dynamic_annotations.c', | 595 'third_party/dynamic_annotations/dynamic_annotations.c', |
| 596 ], | 596 ], |
| 597 # Metrics won't work in the NaCl sandbox. |
| 598 'sources/': [ ['exclude', '^metrics/'] ], |
| 597 }], | 599 }], |
| 598 ['OS == "android" and >(nacl_untrusted_build)==0', { | 600 ['OS == "android" and >(nacl_untrusted_build)==0', { |
| 599 'sources!': [ | 601 'sources!': [ |
| 600 'base_paths_posix.cc', | 602 'base_paths_posix.cc', |
| 601 'files/file_path_watcher_kqueue.cc', | 603 'files/file_path_watcher_kqueue.cc', |
| 602 'files/file_path_watcher_stub.cc', | 604 'files/file_path_watcher_stub.cc', |
| 603 'system_monitor/system_monitor_posix.cc', | 605 'system_monitor/system_monitor_posix.cc', |
| 604 ], | 606 ], |
| 605 'sources/': [ | 607 'sources/': [ |
| 606 ['include', '^files/file_path_watcher_linux\\.cc$'], | 608 ['include', '^files/file_path_watcher_linux\\.cc$'], |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 709 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
| 708 # command-line-string limitation when building NaCl on Windows. | 710 # command-line-string limitation when building NaCl on Windows. |
| 709 ['OS == "win" and >(nacl_untrusted_build)==1', { | 711 ['OS == "win" and >(nacl_untrusted_build)==1', { |
| 710 'sources/': [ ['exclude', '\\.h$'] ], | 712 'sources/': [ ['exclude', '\\.h$'] ], |
| 711 }], | 713 }], |
| 712 ], | 714 ], |
| 713 }], | 715 }], |
| 714 ], | 716 ], |
| 715 }, | 717 }, |
| 716 } | 718 } |
| OLD | NEW |