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 'base_i18n_target': 0, | 9 'base_i18n_target': 0, |
10 }, | 10 }, |
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 ['include', '^process/process_iterator\\.cc$'], | 808 ['include', '^process/process_iterator\\.cc$'], |
809 ['include', '^process/process_iterator_linux\\.cc$'], | 809 ['include', '^process/process_iterator_linux\\.cc$'], |
810 ['include', '^process/process_metrics_linux\\.cc$'], | 810 ['include', '^process/process_metrics_linux\\.cc$'], |
811 ['include', '^posix/unix_domain_socket_linux\\.cc$'], | 811 ['include', '^posix/unix_domain_socket_linux\\.cc$'], |
812 ['include', '^strings/sys_string_conversions_posix\\.cc$'], | 812 ['include', '^strings/sys_string_conversions_posix\\.cc$'], |
813 ['include', '^sys_info_linux\\.cc$'], | 813 ['include', '^sys_info_linux\\.cc$'], |
814 ['include', '^worker_pool_linux\\.cc$'], | 814 ['include', '^worker_pool_linux\\.cc$'], |
815 ], | 815 ], |
816 }], | 816 }], |
817 ['OS == "android" and _toolset == "host" and host_os == "linux"', { | 817 ['OS == "android" and _toolset == "host" and host_os == "linux"', { |
| 818 'defines': [ |
| 819 'OS_ANDROID_HOST=Linux', |
| 820 ], |
818 'sources/': [ | 821 'sources/': [ |
819 # Pull in specific files for host builds. | 822 # Pull in specific files for host builds. |
| 823 ['include', '^atomicops_internals_x86_gcc\\.cc$'], |
820 ['include', '^threading/platform_thread_linux\\.cc$'], | 824 ['include', '^threading/platform_thread_linux\\.cc$'], |
821 ], | 825 ], |
822 }], | 826 }], |
823 ['OS == "android" and <(android_webview_build)==1', { | 827 ['OS == "android" and <(android_webview_build)==1', { |
824 'defines': [ | 828 'defines': [ |
825 # WebView builds as part of the system which already has sincos; | 829 # WebView builds as part of the system which already has sincos; |
826 # avoid defining it again as it causes a linker warning. | 830 # avoid defining it again as it causes a linker warning. |
827 'ANDROID_SINCOS_PROVIDED', | 831 'ANDROID_SINCOS_PROVIDED', |
828 ], | 832 ], |
829 }], | 833 }], |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
979 'i18n/time_formatting.h', | 983 'i18n/time_formatting.h', |
980 'i18n/timezone.cc', | 984 'i18n/timezone.cc', |
981 'i18n/timezone.h', | 985 'i18n/timezone.h', |
982 'i18n/utf8_validator_tables.cc', | 986 'i18n/utf8_validator_tables.cc', |
983 'i18n/utf8_validator_tables.h', | 987 'i18n/utf8_validator_tables.h', |
984 ], | 988 ], |
985 }] | 989 }] |
986 ], | 990 ], |
987 }, | 991 }, |
988 } | 992 } |
OLD | NEW |