Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(478)

Side by Side Diff: base/BUILD.gn

Issue 1072653005: Update gn_all and gyp_remaining to reflect reality on the win config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn_all
Patch Set: fix breakpad-related issues Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« BUILD.gn ('K') | « BUILD.gn ('k') | build/gn_migration.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« BUILD.gn ('K') | « BUILD.gn ('k') | build/gn_migration.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698