| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ":java_enums_srcjar", | 58 ":java_enums_srcjar", |
| 59 ":ui_android_jni_headers", | 59 ":ui_android_jni_headers", |
| 60 "//base", | 60 "//base", |
| 61 "//cc", | 61 "//cc", |
| 62 "//cc/surfaces", | 62 "//cc/surfaces", |
| 63 "//cc/surfaces:surface_id", | 63 "//cc/surfaces:surface_id", |
| 64 "//skia", | 64 "//skia", |
| 65 "//ui/display", | 65 "//ui/display", |
| 66 "//ui/gfx", | 66 "//ui/gfx", |
| 67 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
| 68 "//url", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| 70 | 71 |
| 71 static_library("test_support") { | 72 static_library("test_support") { |
| 72 testonly = true | 73 testonly = true |
| 73 sources = [ | 74 sources = [ |
| 74 "dummy_screen_android.cc", | 75 "dummy_screen_android.cc", |
| 75 "dummy_screen_android.h", | 76 "dummy_screen_android.h", |
| 76 ] | 77 ] |
| 77 | 78 |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 "//cc", | 264 "//cc", |
| 264 "//cc:test_support", | 265 "//cc:test_support", |
| 265 "//skia", | 266 "//skia", |
| 266 "//testing/gmock", | 267 "//testing/gmock", |
| 267 "//testing/gtest", | 268 "//testing/gtest", |
| 268 "//ui/base", | 269 "//ui/base", |
| 269 "//ui/gfx", | 270 "//ui/gfx", |
| 270 "//ui/resources:ui_test_pak", | 271 "//ui/resources:ui_test_pak", |
| 271 ] | 272 ] |
| 272 } | 273 } |
| OLD | NEW |