| 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 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 887 | 887 |
| 888 if (is_android && !is_debug) { | 888 if (is_android && !is_debug) { |
| 889 configs -= [ "//build/config/compiler:optimize" ] | 889 configs -= [ "//build/config/compiler:optimize" ] |
| 890 configs += [ "//build/config/compiler:optimize_max" ] | 890 configs += [ "//build/config/compiler:optimize_max" ] |
| 891 } | 891 } |
| 892 | 892 |
| 893 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 893 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 894 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 894 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 895 } | 895 } |
| 896 | 896 |
| 897 if (is_linux && !is_chromeos) { | 897 if (is_win || (is_linux && !is_chromeos)) { |
| 898 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 898 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
| 899 test("base_perftests") { | 899 test("base_perftests") { |
| 900 sources = [ | 900 sources = [ |
| 901 "message_loop/message_pump_perftest.cc", | 901 "message_loop/message_pump_perftest.cc", |
| 902 | 902 |
| 903 # "test/run_all_unittests.cc", | 903 # "test/run_all_unittests.cc", |
| 904 "threading/thread_perftest.cc", | 904 "threading/thread_perftest.cc", |
| 905 ] | 905 ] |
| 906 deps = [ | 906 deps = [ |
| 907 ":base", | 907 ":base", |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1477 | 1477 |
| 1478 # GYP: //base.gyp:base_java_unittest_support | 1478 # GYP: //base.gyp:base_java_unittest_support |
| 1479 android_library("base_java_unittest_support") { | 1479 android_library("base_java_unittest_support") { |
| 1480 deps = [ | 1480 deps = [ |
| 1481 ":base_java", | 1481 ":base_java", |
| 1482 ] | 1482 ] |
| 1483 java_files = | 1483 java_files = |
| 1484 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1484 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1485 } | 1485 } |
| 1486 } | 1486 } |
| OLD | NEW |