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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 'threading/sequenced_worker_pool.h', | 444 'threading/sequenced_worker_pool.h', |
445 'threading/simple_thread.cc', | 445 'threading/simple_thread.cc', |
446 'threading/simple_thread.h', | 446 'threading/simple_thread.h', |
447 'threading/thread.cc', | 447 'threading/thread.cc', |
448 'threading/thread.h', | 448 'threading/thread.h', |
449 'threading/thread_checker.h', | 449 'threading/thread_checker.h', |
450 'threading/thread_checker_impl.cc', | 450 'threading/thread_checker_impl.cc', |
451 'threading/thread_checker_impl.h', | 451 'threading/thread_checker_impl.h', |
452 'threading/thread_collision_warner.cc', | 452 'threading/thread_collision_warner.cc', |
453 'threading/thread_collision_warner.h', | 453 'threading/thread_collision_warner.h', |
| 454 'threading/thread_id_name_manager.cc', |
| 455 'threading/thread_id_name_manager.h', |
454 'threading/thread_local.h', | 456 'threading/thread_local.h', |
455 'threading/thread_local_posix.cc', | 457 'threading/thread_local_posix.cc', |
456 'threading/thread_local_storage.h', | 458 'threading/thread_local_storage.h', |
457 'threading/thread_local_storage_posix.cc', | 459 'threading/thread_local_storage_posix.cc', |
458 'threading/thread_local_storage_win.cc', | 460 'threading/thread_local_storage_win.cc', |
459 'threading/thread_local_win.cc', | 461 'threading/thread_local_win.cc', |
460 'threading/thread_restrictions.h', | 462 'threading/thread_restrictions.h', |
461 'threading/thread_restrictions.cc', | 463 'threading/thread_restrictions.cc', |
462 'threading/watchdog.cc', | 464 'threading/watchdog.cc', |
463 'threading/watchdog.h', | 465 'threading/watchdog.h', |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 724 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
723 # command-line-string limitation when building NaCl on Windows. | 725 # command-line-string limitation when building NaCl on Windows. |
724 ['OS == "win" and >(nacl_untrusted_build)==1', { | 726 ['OS == "win" and >(nacl_untrusted_build)==1', { |
725 'sources/': [ ['exclude', '\\.h$'] ], | 727 'sources/': [ ['exclude', '\\.h$'] ], |
726 }], | 728 }], |
727 ], | 729 ], |
728 }], | 730 }], |
729 ], | 731 ], |
730 }, | 732 }, |
731 } | 733 } |
OLD | NEW |