| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//cc/surfaces:surface_id", |
| 60 "//skia", | 60 "//skia", |
| 61 "//ui/display", | 61 "//ui/display", |
| 62 "//ui/gfx", | 62 "//ui/gfx", |
| 63 "//ui/gfx/geometry", | 63 "//ui/gfx/geometry", |
| 64 "//url", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| 66 | 67 |
| 67 static_library("test_support") { | 68 static_library("test_support") { |
| 68 testonly = true | 69 testonly = true |
| 69 sources = [ | 70 sources = [ |
| 70 "dummy_screen_android.cc", | 71 "dummy_screen_android.cc", |
| 71 "dummy_screen_android.h", | 72 "dummy_screen_android.h", |
| 72 ] | 73 ] |
| 73 | 74 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 "//cc", | 257 "//cc", |
| 257 "//cc:test_support", | 258 "//cc:test_support", |
| 258 "//skia", | 259 "//skia", |
| 259 "//testing/gmock", | 260 "//testing/gmock", |
| 260 "//testing/gtest", | 261 "//testing/gtest", |
| 261 "//ui/base", | 262 "//ui/base", |
| 262 "//ui/gfx", | 263 "//ui/gfx", |
| 263 "//ui/resources:ui_test_pak", | 264 "//ui/resources:ui_test_pak", |
| 264 ] | 265 ] |
| 265 } | 266 } |
| OLD | NEW |