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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 750 ['include', '^sys_info_linux\\.cc$'], | 750 ['include', '^sys_info_linux\\.cc$'], |
| 751 ['include', '^worker_pool_linux\\.cc$'], | 751 ['include', '^worker_pool_linux\\.cc$'], |
| 752 ], | 752 ], |
| 753 }], | 753 }], |
| 754 ['OS == "android" and _toolset == "host" and host_os == "linux"', { | 754 ['OS == "android" and _toolset == "host" and host_os == "linux"', { |
| 755 'sources/': [ | 755 'sources/': [ |
| 756 # Pull in specific files for host builds. | 756 # Pull in specific files for host builds. |
| 757 ['include', '^threading/platform_thread_linux\\.cc$'], | 757 ['include', '^threading/platform_thread_linux\\.cc$'], |
| 758 ], | 758 ], |
| 759 }], | 759 }], |
| 760 ['OS == "android" and android_webview_build==1', { | |
| 761 'defines': [ | |
| 762 # WebView builds as part of the system which already has sincos; | |
|
brettw
2013/08/16 19:50:05
It sucks to have to define this thing as part of t
Torne
2013/08/19 10:25:49
I intentionally haven't provided a global define f
| |
| 763 # avoid defining it again as it causes a linker warning. | |
| 764 'ANDROID_SINCOS_PROVIDED', | |
| 765 ], | |
| 766 }], | |
| 760 ['OS == "ios" and _toolset != "host"', { | 767 ['OS == "ios" and _toolset != "host"', { |
| 761 'sources/': [ | 768 'sources/': [ |
| 762 # Pull in specific Mac files for iOS (which have been filtered out | 769 # Pull in specific Mac files for iOS (which have been filtered out |
| 763 # by file name rules). | 770 # by file name rules). |
| 764 ['include', '^atomicops_internals_mac\\.'], | 771 ['include', '^atomicops_internals_mac\\.'], |
| 765 ['include', '^base_paths_mac\\.'], | 772 ['include', '^base_paths_mac\\.'], |
| 766 ['include', '^file_util_mac\\.'], | 773 ['include', '^file_util_mac\\.'], |
| 767 ['include', '^file_version_info_mac\\.'], | 774 ['include', '^file_version_info_mac\\.'], |
| 768 ['include', '^mac/bundle_locations\\.'], | 775 ['include', '^mac/bundle_locations\\.'], |
| 769 ['include', '^mac/foundation_util\\.'], | 776 ['include', '^mac/foundation_util\\.'], |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 885 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 892 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
| 886 'sources/': [ | 893 'sources/': [ |
| 887 ['exclude', '^third_party/nspr/'], | 894 ['exclude', '^third_party/nspr/'], |
| 888 ], | 895 ], |
| 889 }], | 896 }], |
| 890 ], | 897 ], |
| 891 }], | 898 }], |
| 892 ], | 899 ], |
| 893 }, | 900 }, |
| 894 } | 901 } |
| OLD | NEW |