Chromium Code Reviews| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 565 'process_util_posix.cc', | 565 'process_util_posix.cc', |
| 566 'rand_util_posix.cc', | 566 'rand_util_posix.cc', |
| 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', { |
|
Torne
2012/08/14 09:29:33
This condition reads really weirdly; I realise you
Xianzhu
2012/08/14 16:43:57
This was changed in https://chromiumcodereview.app
| |
| 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 |