| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 assert(is_android) | 8 assert(is_android) |
| 9 | 9 |
| 10 component("android") { | 10 component("android") { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 defines = [ "UI_ANDROID_IMPLEMENTATION" ] | 51 defines = [ "UI_ANDROID_IMPLEMENTATION" ] |
| 52 | 52 |
| 53 deps = [ | 53 deps = [ |
| 54 ":java_enums_srcjar", | 54 ":java_enums_srcjar", |
| 55 ":ui_android_jni_headers", | 55 ":ui_android_jni_headers", |
| 56 "//base", | 56 "//base", |
| 57 "//cc", | 57 "//cc", |
| 58 "//cc/surfaces", | 58 "//cc/surfaces", |
| 59 "//cc/surfaces:surface_id", |
| 59 "//skia", | 60 "//skia", |
| 60 "//ui/display", | 61 "//ui/display", |
| 61 "//ui/gfx", | 62 "//ui/gfx", |
| 62 "//ui/gfx/geometry", | 63 "//ui/gfx/geometry", |
| 63 ] | 64 ] |
| 64 } | 65 } |
| 65 | 66 |
| 66 static_library("test_support") { | 67 static_library("test_support") { |
| 67 testonly = true | 68 testonly = true |
| 68 sources = [ | 69 sources = [ |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 "//cc", | 252 "//cc", |
| 252 "//cc:test_support", | 253 "//cc:test_support", |
| 253 "//skia", | 254 "//skia", |
| 254 "//testing/gmock", | 255 "//testing/gmock", |
| 255 "//testing/gtest", | 256 "//testing/gtest", |
| 256 "//ui/base", | 257 "//ui/base", |
| 257 "//ui/gfx", | 258 "//ui/gfx", |
| 258 "//ui/resources:ui_test_pak", | 259 "//ui/resources:ui_test_pak", |
| 259 ] | 260 ] |
| 260 } | 261 } |
| OLD | NEW |