| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 ] | 747 ] |
| 748 | 748 |
| 749 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 749 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 750 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 750 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 751 | 751 |
| 752 libs = [ | 752 libs = [ |
| 753 "cfgmgr32.lib", | 753 "cfgmgr32.lib", |
| 754 "netapi32.lib", | 754 "netapi32.lib", |
| 755 "powrprof.lib", | 755 "powrprof.lib", |
| 756 "setupapi.lib", | 756 "setupapi.lib", |
| 757 "pdh.lib", |
| 757 ] | 758 ] |
| 758 all_dependent_configs = [ ":base_win_linker_flags" ] | 759 all_dependent_configs = [ ":base_win_linker_flags" ] |
| 759 } else if (!is_nacl) { | 760 } else if (!is_nacl) { |
| 760 # Non-Windows. | 761 # Non-Windows. |
| 761 deps += [ "//third_party/libevent" ] | 762 deps += [ "//third_party/libevent" ] |
| 762 } | 763 } |
| 763 | 764 |
| 764 # Mac. | 765 # Mac. |
| 765 if (is_mac || is_ios) { | 766 if (is_mac || is_ios) { |
| 766 # Common Desktop / iOS excludes | 767 # Common Desktop / iOS excludes |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 "prefs/pref_change_registrar_unittest.cc", | 1247 "prefs/pref_change_registrar_unittest.cc", |
| 1247 "prefs/pref_member_unittest.cc", | 1248 "prefs/pref_member_unittest.cc", |
| 1248 "prefs/pref_notifier_impl_unittest.cc", | 1249 "prefs/pref_notifier_impl_unittest.cc", |
| 1249 "prefs/pref_service_unittest.cc", | 1250 "prefs/pref_service_unittest.cc", |
| 1250 "prefs/pref_value_map_unittest.cc", | 1251 "prefs/pref_value_map_unittest.cc", |
| 1251 "prefs/pref_value_store_unittest.cc", | 1252 "prefs/pref_value_store_unittest.cc", |
| 1252 "prefs/scoped_user_pref_update_unittest.cc", | 1253 "prefs/scoped_user_pref_update_unittest.cc", |
| 1253 "process/memory_unittest.cc", | 1254 "process/memory_unittest.cc", |
| 1254 "process/memory_unittest_mac.h", | 1255 "process/memory_unittest_mac.h", |
| 1255 "process/memory_unittest_mac.mm", | 1256 "process/memory_unittest_mac.mm", |
| 1257 "process/private_working_set_snapshot_win_unittest.cc", |
| 1256 "process/process_metrics_unittest.cc", | 1258 "process/process_metrics_unittest.cc", |
| 1257 "process/process_metrics_unittest_ios.cc", | 1259 "process/process_metrics_unittest_ios.cc", |
| 1258 "process/process_unittest.cc", | 1260 "process/process_unittest.cc", |
| 1259 "process/process_util_unittest.cc", | 1261 "process/process_util_unittest.cc", |
| 1260 "process/process_util_unittest_ios.cc", | 1262 "process/process_util_unittest_ios.cc", |
| 1261 "profiler/stack_sampling_profiler_unittest.cc", | 1263 "profiler/stack_sampling_profiler_unittest.cc", |
| 1262 "profiler/tracked_time_unittest.cc", | 1264 "profiler/tracked_time_unittest.cc", |
| 1263 "rand_util_unittest.cc", | 1265 "rand_util_unittest.cc", |
| 1264 "scoped_clear_errno_unittest.cc", | 1266 "scoped_clear_errno_unittest.cc", |
| 1265 "scoped_generic_unittest.cc", | 1267 "scoped_generic_unittest.cc", |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1555 | 1557 |
| 1556 # GYP: //base.gyp:base_java_unittest_support | 1558 # GYP: //base.gyp:base_java_unittest_support |
| 1557 android_library("base_java_unittest_support") { | 1559 android_library("base_java_unittest_support") { |
| 1558 deps = [ | 1560 deps = [ |
| 1559 ":base_java", | 1561 ":base_java", |
| 1560 ] | 1562 ] |
| 1561 java_files = | 1563 java_files = |
| 1562 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1564 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1563 } | 1565 } |
| 1564 } | 1566 } |
| OLD | NEW |