| 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("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 visibility = [ "//base/*" ] | 305 visibility = [ "//base/*" ] |
| 306 testonly = true | 306 testonly = true |
| 307 sources = [ | 307 sources = [ |
| 308 "run_all_base_unittests.cc", | 308 "run_all_base_unittests.cc", |
| 309 ] | 309 ] |
| 310 deps = [ | 310 deps = [ |
| 311 ":test_support", | 311 ":test_support", |
| 312 ] | 312 ] |
| 313 } | 313 } |
| 314 | 314 |
| 315 if (is_linux) { | 315 if (is_linux && is_component_build) { |
| 316 shared_library("malloc_wrapper") { | 316 shared_library("malloc_wrapper") { |
| 317 testonly = true | 317 testonly = true |
| 318 sources = [ | 318 sources = [ |
| 319 "malloc_wrapper.cc", | 319 "malloc_wrapper.cc", |
| 320 ] | 320 ] |
| 321 deps = [ | 321 deps = [ |
| 322 "//base", | 322 "//base", |
| 323 "//build/config/sanitizers:deps", | 323 "//build/config/sanitizers:deps", |
| 324 ] | 324 ] |
| 325 } | 325 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 } | 366 } |
| 367 | 367 |
| 368 android_aidl("test_support_java_aidl") { | 368 android_aidl("test_support_java_aidl") { |
| 369 testonly = true | 369 testonly = true |
| 370 import_include = "android/java/src" | 370 import_include = "android/java/src" |
| 371 sources = [ | 371 sources = [ |
| 372 "android/java/src/org/chromium/base/ITestClient.aidl", | 372 "android/java/src/org/chromium/base/ITestClient.aidl", |
| 373 ] | 373 ] |
| 374 } | 374 } |
| 375 } | 375 } |
| OLD | NEW |