| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 defines = [ "UI_ANDROID_IMPLEMENTATION" ] | 49 defines = [ "UI_ANDROID_IMPLEMENTATION" ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 ":java_enums_srcjar", | 52 ":java_enums_srcjar", |
| 53 ":ui_android_jni_headers", | 53 ":ui_android_jni_headers", |
| 54 "//base", | 54 "//base", |
| 55 "//cc", | 55 "//cc", |
| 56 "//cc/surfaces", | 56 "//cc/surfaces", |
| 57 "//cc/surfaces:surface_id", |
| 57 "//skia", | 58 "//skia", |
| 58 "//ui/display", | 59 "//ui/display", |
| 59 "//ui/gfx", | 60 "//ui/gfx", |
| 60 "//ui/gfx/geometry", | 61 "//ui/gfx/geometry", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| 63 | 64 |
| 64 static_library("test_support") { | 65 static_library("test_support") { |
| 65 testonly = true | 66 testonly = true |
| 66 sources = [ | 67 sources = [ |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "//cc", | 248 "//cc", |
| 248 "//cc:test_support", | 249 "//cc:test_support", |
| 249 "//skia", | 250 "//skia", |
| 250 "//testing/gmock", | 251 "//testing/gmock", |
| 251 "//testing/gtest", | 252 "//testing/gtest", |
| 252 "//ui/base", | 253 "//ui/base", |
| 253 "//ui/gfx", | 254 "//ui/gfx", |
| 254 "//ui/resources:ui_test_pak", | 255 "//ui/resources:ui_test_pak", |
| 255 ] | 256 ] |
| 256 } | 257 } |
| OLD | NEW |