| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 } | 201 } |
| 202 | 202 |
| 203 if (is_linux) { | 203 if (is_linux) { |
| 204 shared_library("malloc_wrapper") { | 204 shared_library("malloc_wrapper") { |
| 205 testonly = true | 205 testonly = true |
| 206 sources = [ | 206 sources = [ |
| 207 "malloc_wrapper.cc", | 207 "malloc_wrapper.cc", |
| 208 ] | 208 ] |
| 209 deps = [ | 209 deps = [ |
| 210 "//base", | 210 "//base", |
| 211 "//build/config/sanitizers:deps", |
| 211 ] | 212 ] |
| 212 } | 213 } |
| 213 } | 214 } |
| 214 | 215 |
| 215 if (is_android) { | 216 if (is_android) { |
| 216 generate_jni("base_unittests_jni_headers") { | 217 generate_jni("base_unittests_jni_headers") { |
| 217 sources = [ | 218 sources = [ |
| 218 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 219 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 219 "android/java/src/org/chromium/base/TestUiThread.java", | 220 "android/java/src/org/chromium/base/TestUiThread.java", |
| 220 ] | 221 ] |
| 221 jni_package = "base" | 222 jni_package = "base" |
| 222 } | 223 } |
| 223 } | 224 } |
| OLD | NEW |