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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
434 'threading/platform_thread_posix.cc', | 434 'threading/platform_thread_posix.cc', |
435 'threading/platform_thread_win.cc', | 435 'threading/platform_thread_win.cc', |
436 'threading/post_task_and_reply_impl.cc', | 436 'threading/post_task_and_reply_impl.cc', |
437 'threading/post_task_and_reply_impl.h', | 437 'threading/post_task_and_reply_impl.h', |
438 'threading/sequenced_worker_pool.cc', | 438 'threading/sequenced_worker_pool.cc', |
439 'threading/sequenced_worker_pool.h', | 439 'threading/sequenced_worker_pool.h', |
440 'threading/simple_thread.cc', | 440 'threading/simple_thread.cc', |
441 'threading/simple_thread.h', | 441 'threading/simple_thread.h', |
442 'threading/thread.cc', | 442 'threading/thread.cc', |
443 'threading/thread.h', | 443 'threading/thread.h', |
444 'threading/thread_id_name_manager.cc', | |
445 'threading/thread_id_name_manager.h', | |
jonathan.backer
2012/12/06 16:29:08
nit: alphabetical order?
dsinclair
2012/12/06 17:55:05
Done.
| |
444 'threading/thread_checker.h', | 446 'threading/thread_checker.h', |
445 'threading/thread_checker_impl.cc', | 447 'threading/thread_checker_impl.cc', |
446 'threading/thread_checker_impl.h', | 448 'threading/thread_checker_impl.h', |
447 'threading/thread_collision_warner.cc', | 449 'threading/thread_collision_warner.cc', |
448 'threading/thread_collision_warner.h', | 450 'threading/thread_collision_warner.h', |
449 'threading/thread_local.h', | 451 'threading/thread_local.h', |
450 'threading/thread_local_posix.cc', | 452 'threading/thread_local_posix.cc', |
451 'threading/thread_local_storage.h', | 453 'threading/thread_local_storage.h', |
452 'threading/thread_local_storage_posix.cc', | 454 'threading/thread_local_storage_posix.cc', |
453 'threading/thread_local_storage_win.cc', | 455 'threading/thread_local_storage_win.cc', |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
717 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 719 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
718 # command-line-string limitation when building NaCl on Windows. | 720 # command-line-string limitation when building NaCl on Windows. |
719 ['OS == "win" and >(nacl_untrusted_build)==1', { | 721 ['OS == "win" and >(nacl_untrusted_build)==1', { |
720 'sources/': [ ['exclude', '\\.h$'] ], | 722 'sources/': [ ['exclude', '\\.h$'] ], |
721 }], | 723 }], |
722 ], | 724 ], |
723 }], | 725 }], |
724 ], | 726 ], |
725 }, | 727 }, |
726 } | 728 } |
OLD | NEW |