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

Side by Side Diff: base/BUILD.gn

Issue 1064793002: Fix OutOfMemoryDeathTest.ViaSharedLibraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed CL to avoid target enumeration on unsupported OS 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
« no previous file with comments | « no previous file | base/base.gyp » ('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 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 "sys_string_conversions_mac_unittest.mm", 1341 "sys_string_conversions_mac_unittest.mm",
1342 ] 1342 ]
1343 set_sources_assignment_filter(sources_assignment_filter) 1343 set_sources_assignment_filter(sources_assignment_filter)
1344 1344
1345 # TODO(GYP): dep on copy_test_data_ios action. 1345 # TODO(GYP): dep on copy_test_data_ios action.
1346 } 1346 }
1347 1347
1348 if (is_linux) { 1348 if (is_linux) {
1349 sources -= [ "file_version_info_unittest.cc" ] 1349 sources -= [ "file_version_info_unittest.cc" ]
1350 sources += [ "nix/xdg_util_unittest.cc" ] 1350 sources += [ "nix/xdg_util_unittest.cc" ]
1351 deps += [ "//base/test:malloc_wrapper" ]
1352
1351 if (use_glib) { 1353 if (use_glib) {
1352 configs += [ "//build/config/linux:glib" ] 1354 configs += [ "//build/config/linux:glib" ]
1353 } 1355 }
1354 } 1356 }
1355 1357
1356 if (!is_linux || use_ozone) { 1358 if (!is_linux || use_ozone) {
1357 sources -= [ "message_loop/message_pump_glib_unittest.cc" ] 1359 sources -= [ "message_loop/message_pump_glib_unittest.cc" ]
1358 } 1360 }
1359 1361
1360 if (is_posix || is_ios) { 1362 if (is_posix || is_ios) {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 1472
1471 # GYP: //base.gyp:base_java_unittest_support 1473 # GYP: //base.gyp:base_java_unittest_support
1472 android_library("base_java_unittest_support") { 1474 android_library("base_java_unittest_support") {
1473 deps = [ 1475 deps = [
1474 ":base_java", 1476 ":base_java",
1475 ] 1477 ]
1476 java_files = 1478 java_files =
1477 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1479 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1478 } 1480 }
1479 } 1481 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698