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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 'scoped_native_library.cc', | 567 'scoped_native_library.cc', |
568 'scoped_temp_dir.cc', | 568 'scoped_temp_dir.cc', |
569 'shared_memory_posix.cc', | 569 'shared_memory_posix.cc', |
570 'sys_info_posix.cc', | 570 'sys_info_posix.cc', |
571 'threading/sequenced_worker_pool.cc', | 571 'threading/sequenced_worker_pool.cc', |
572 'third_party/dynamic_annotations/dynamic_annotations.c', | 572 'third_party/dynamic_annotations/dynamic_annotations.c', |
573 ], | 573 ], |
574 }], | 574 }], |
575 ['OS == "android" and >(nacl_untrusted_build)==0', { | 575 ['OS == "android" and >(nacl_untrusted_build)==0', { |
576 'sources!': [ | 576 'sources!': [ |
| 577 'base_paths_posix.cc', |
577 'files/file_path_watcher_kqueue.cc', | 578 'files/file_path_watcher_kqueue.cc', |
578 'system_monitor/system_monitor_posix.cc', | 579 'system_monitor/system_monitor_posix.cc', |
579 ], | 580 ], |
580 'sources/': [ | 581 'sources/': [ |
581 ['include', '^process_util_linux\\.cc$'], | 582 ['include', '^process_util_linux\\.cc$'], |
582 ['include', '^sys_info_linux\\.cc$'], | 583 ['include', '^sys_info_linux\\.cc$'], |
583 ['include', '^sys_string_conversions_posix\\.cc$'], | 584 ['include', '^sys_string_conversions_posix\\.cc$'], |
584 ['include', '^worker_pool_linux\\.cc$'], | 585 ['include', '^worker_pool_linux\\.cc$'], |
585 ], | 586 ], |
586 }], | 587 }], |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 681 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
681 # command-line-string limitation when building NaCl on Windows. | 682 # command-line-string limitation when building NaCl on Windows. |
682 ['OS == "win" and >(nacl_untrusted_build)==1', { | 683 ['OS == "win" and >(nacl_untrusted_build)==1', { |
683 'sources/': [ ['exclude', '\\.h$'] ], | 684 'sources/': [ ['exclude', '\\.h$'] ], |
684 }], | 685 }], |
685 ], | 686 ], |
686 }], | 687 }], |
687 ], | 688 ], |
688 }, | 689 }, |
689 } | 690 } |
OLD | NEW |