| 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 13 matching lines...) Expand all Loading... |
| 24 "resources/crushed_sprite_resource.cc", | 24 "resources/crushed_sprite_resource.cc", |
| 25 "resources/crushed_sprite_resource.h", | 25 "resources/crushed_sprite_resource.h", |
| 26 "resources/resource_manager.cc", | 26 "resources/resource_manager.cc", |
| 27 "resources/resource_manager.h", | 27 "resources/resource_manager.h", |
| 28 "resources/resource_manager_impl.cc", | 28 "resources/resource_manager_impl.cc", |
| 29 "resources/resource_manager_impl.h", | 29 "resources/resource_manager_impl.h", |
| 30 "resources/ui_resource_provider.h", | 30 "resources/ui_resource_provider.h", |
| 31 "ui_android_export.h", | 31 "ui_android_export.h", |
| 32 "ui_android_jni_registrar.cc", | 32 "ui_android_jni_registrar.cc", |
| 33 "ui_android_jni_registrar.h", | 33 "ui_android_jni_registrar.h", |
| 34 "view_android.cc", |
| 34 "view_android.h", | 35 "view_android.h", |
| 35 "window_android.cc", | 36 "window_android.cc", |
| 36 "window_android.h", | 37 "window_android.h", |
| 37 "window_android_compositor.h", | 38 "window_android_compositor.h", |
| 38 "window_android_observer.h", | 39 "window_android_observer.h", |
| 39 ] | 40 ] |
| 40 | 41 |
| 41 defines = [ "UI_ANDROID_IMPLEMENTATION" ] | 42 defines = [ "UI_ANDROID_IMPLEMENTATION" ] |
| 42 | 43 |
| 43 deps = [ | 44 deps = [ |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 "//cc", | 250 "//cc", |
| 250 "//cc:test_support", | 251 "//cc:test_support", |
| 251 "//skia", | 252 "//skia", |
| 252 "//testing/gmock", | 253 "//testing/gmock", |
| 253 "//testing/gtest", | 254 "//testing/gtest", |
| 254 "//ui/base", | 255 "//ui/base", |
| 255 "//ui/gfx", | 256 "//ui/gfx", |
| 256 "//ui/resources:ui_test_pak", | 257 "//ui/resources:ui_test_pak", |
| 257 ] | 258 ] |
| 258 } | 259 } |
| OLD | NEW |