Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1385)

Side by Side Diff: ui/android/BUILD.gn

Issue 1337703002: [Contextual Search] Add support for crushed sprites and animate the search provider icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add TODO's for other planned tests Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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") {
11 output_name = "ui_android" 11 output_name = "ui_android"
12 sources = [ 12 sources = [
13 "resources/crushed_sprite_resource.cc",
14 "resources/crushed_sprite_resource.h",
13 "resources/resource_manager.cc", 15 "resources/resource_manager.cc",
14 "resources/resource_manager.h", 16 "resources/resource_manager.h",
15 "resources/resource_manager_impl.cc", 17 "resources/resource_manager_impl.cc",
16 "resources/resource_manager_impl.h", 18 "resources/resource_manager_impl.h",
17 "resources/ui_resource_provider.h", 19 "resources/ui_resource_provider.h",
18 "ui_android_export.h", 20 "ui_android_export.h",
19 "ui_android_jni_registrar.cc", 21 "ui_android_jni_registrar.cc",
20 "ui_android_jni_registrar.h", 22 "ui_android_jni_registrar.h",
21 "view_android.cc", 23 "view_android.cc",
22 "view_android.h", 24 "view_android.h",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 "//cc:test_support", 161 "//cc:test_support",
160 "//skia", 162 "//skia",
161 "//testing/gmock", 163 "//testing/gmock",
162 "//testing/gtest", 164 "//testing/gtest",
163 "//ui/base", 165 "//ui/base",
164 "//ui/gfx", 166 "//ui/gfx",
165 "//ui/resources:ui_test_pak", 167 "//ui/resources:ui_test_pak",
166 ] 168 ]
167 apk_deps = [ ":ui_java" ] 169 apk_deps = [ ":ui_java" ]
168 } 170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698