| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 'task_runner.cc', | 460 'task_runner.cc', |
| 461 'task_runner.h', | 461 'task_runner.h', |
| 462 'task_runner_util.h', | 462 'task_runner_util.h', |
| 463 'template_util.h', | 463 'template_util.h', |
| 464 'thread_task_runner_handle.cc', | 464 'thread_task_runner_handle.cc', |
| 465 'thread_task_runner_handle.h', | 465 'thread_task_runner_handle.h', |
| 466 'threading/non_thread_safe.h', | 466 'threading/non_thread_safe.h', |
| 467 'threading/non_thread_safe_impl.cc', | 467 'threading/non_thread_safe_impl.cc', |
| 468 'threading/non_thread_safe_impl.h', | 468 'threading/non_thread_safe_impl.h', |
| 469 'threading/platform_thread.h', | 469 'threading/platform_thread.h', |
| 470 'threading/platform_thread_android.cc', |
| 471 'threading/platform_thread_linux.cc', |
| 470 'threading/platform_thread_mac.mm', | 472 'threading/platform_thread_mac.mm', |
| 471 'threading/platform_thread_posix.cc', | 473 'threading/platform_thread_posix.cc', |
| 472 'threading/platform_thread_win.cc', | 474 'threading/platform_thread_win.cc', |
| 473 'threading/post_task_and_reply_impl.cc', | 475 'threading/post_task_and_reply_impl.cc', |
| 474 'threading/post_task_and_reply_impl.h', | 476 'threading/post_task_and_reply_impl.h', |
| 475 'threading/sequenced_worker_pool.cc', | 477 'threading/sequenced_worker_pool.cc', |
| 476 'threading/sequenced_worker_pool.h', | 478 'threading/sequenced_worker_pool.h', |
| 477 'threading/simple_thread.cc', | 479 'threading/simple_thread.cc', |
| 478 'threading/simple_thread.h', | 480 'threading/simple_thread.h', |
| 479 'threading/thread.cc', | 481 'threading/thread.cc', |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 ], | 657 ], |
| 656 'sources/': [ | 658 'sources/': [ |
| 657 ['include', '^files/file_path_watcher_linux\\.cc$'], | 659 ['include', '^files/file_path_watcher_linux\\.cc$'], |
| 658 ['include', '^process_util_linux\\.cc$'], | 660 ['include', '^process_util_linux\\.cc$'], |
| 659 ['include', '^posix/unix_domain_socket_linux\\.cc$'], | 661 ['include', '^posix/unix_domain_socket_linux\\.cc$'], |
| 660 ['include', '^strings/sys_string_conversions_posix\\.cc$'], | 662 ['include', '^strings/sys_string_conversions_posix\\.cc$'], |
| 661 ['include', '^sys_info_linux\\.cc$'], | 663 ['include', '^sys_info_linux\\.cc$'], |
| 662 ['include', '^worker_pool_linux\\.cc$'], | 664 ['include', '^worker_pool_linux\\.cc$'], |
| 663 ], | 665 ], |
| 664 }], | 666 }], |
| 667 ['OS == "android" and _toolset == "host" and host_os == "linux"', { |
| 668 'sources/': [ |
| 669 # Pull in specific files for host builds. |
| 670 ['include', 'threading/platform_thread_linux.cc$'], |
| 671 ], |
| 672 }], |
| 665 ['OS == "ios"', { | 673 ['OS == "ios"', { |
| 666 'sources/': [ | 674 'sources/': [ |
| 667 # Pull in specific Mac files for iOS (which have been filtered out | 675 # Pull in specific Mac files for iOS (which have been filtered out |
| 668 # by file name rules). | 676 # by file name rules). |
| 669 ['include', '^atomicops_internals_mac\\.'], | 677 ['include', '^atomicops_internals_mac\\.'], |
| 670 ['include', '^base_paths_mac\\.'], | 678 ['include', '^base_paths_mac\\.'], |
| 671 ['include', '^file_util_mac\\.'], | 679 ['include', '^file_util_mac\\.'], |
| 672 ['include', '^file_version_info_mac\\.'], | 680 ['include', '^file_version_info_mac\\.'], |
| 673 ['include', '^mac/bundle_locations\\.'], | 681 ['include', '^mac/bundle_locations\\.'], |
| 674 ['include', '^mac/foundation_util\\.'], | 682 ['include', '^mac/foundation_util\\.'], |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 785 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
| 778 'sources/': [ | 786 'sources/': [ |
| 779 ['exclude', '^third_party/nspr/'], | 787 ['exclude', '^third_party/nspr/'], |
| 780 ], | 788 ], |
| 781 }], | 789 }], |
| 782 ], | 790 ], |
| 783 }], | 791 }], |
| 784 ], | 792 ], |
| 785 }, | 793 }, |
| 786 } | 794 } |
| OLD | NEW |