| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 public_deps = [ | 109 public_deps = [ |
| 110 "//base", | 110 "//base", |
| 111 "//base:i18n", | 111 "//base:i18n", |
| 112 "//base:base_static", | 112 "//base:base_static", |
| 113 ] | 113 ] |
| 114 deps = [ | 114 deps = [ |
| 115 "//base/third_party/dynamic_annotations", | 115 "//base/third_party/dynamic_annotations", |
| 116 "//testing/gmock", | 116 "//testing/gmock", |
| 117 "//testing/gtest", | 117 "//testing/gtest", |
| 118 "//third_party/libxml", | 118 "//third_party/libxml", |
| 119 "//third_party/icu:icuuc", |
| 119 ] | 120 ] |
| 120 | 121 |
| 121 if (!is_posix) { | 122 if (!is_posix) { |
| 122 sources -= [ | 123 sources -= [ |
| 123 "scoped_locale.cc", | 124 "scoped_locale.cc", |
| 124 "scoped_locale.h", | 125 "scoped_locale.h", |
| 125 ] | 126 ] |
| 126 } | 127 } |
| 127 if (is_ios) { | 128 if (is_ios) { |
| 128 # iOS uses its own unit test launcher. | 129 # iOS uses its own unit test launcher. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 } | 169 } |
| 169 | 170 |
| 170 if (is_android) { | 171 if (is_android) { |
| 171 generate_jni("base_unittests_jni_headers") { | 172 generate_jni("base_unittests_jni_headers") { |
| 172 sources = [ | 173 sources = [ |
| 173 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 174 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 174 ] | 175 ] |
| 175 jni_package = "base" | 176 jni_package = "base" |
| 176 } | 177 } |
| 177 } | 178 } |
| OLD | NEW |