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

Side by Side Diff: ui/android/ui_android.gyp

Issue 1419123002: android: move overscroll effects to ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix exports for component build 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
« no previous file with comments | « ui/android/overscroll_refresh_unittest.cc ('k') | ui/android/window_android_compositor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 # GN version: //ui/android 11 # GN version: //ui/android
12 'target_name': 'ui_android', 12 'target_name': 'ui_android',
13 'type': '<(component)', 13 'type': '<(component)',
14 'dependencies': [ 14 'dependencies': [
15 '../../base/base.gyp:base', 15 '../../base/base.gyp:base',
16 '../../cc/cc.gyp:cc', 16 '../../cc/cc.gyp:cc',
17 '../../skia/skia.gyp:skia', 17 '../../skia/skia.gyp:skia',
18 '../gfx/gfx.gyp:gfx', 18 '../gfx/gfx.gyp:gfx',
19 '../gfx/gfx.gyp:gfx_geometry', 19 '../gfx/gfx.gyp:gfx_geometry',
20 'ui_android_jni_headers', 20 'ui_android_jni_headers',
21 ], 21 ],
22 'defines': [ 22 'defines': [
23 'UI_ANDROID_IMPLEMENTATION', 23 'UI_ANDROID_IMPLEMENTATION',
24 ], 24 ],
25 'sources' : [ 25 'sources' : [
26 'animation_utils.h',
27 'edge_effect.cc',
28 'edge_effect.h',
29 'edge_effect_base.cc',
30 'edge_effect_base.h',
31 'edge_effect_l.cc',
32 'edge_effect_l.h',
33 'overscroll_glow.cc',
34 'overscroll_glow.h',
35 'overscroll_refresh.cc',
36 'overscroll_refresh.h',
26 'resources/resource_manager.cc', 37 'resources/resource_manager.cc',
27 'resources/resource_manager.h', 38 'resources/resource_manager.h',
28 'resources/resource_manager_impl.cc', 39 'resources/resource_manager_impl.cc',
29 'resources/resource_manager_impl.h', 40 'resources/resource_manager_impl.h',
30 'resources/ui_resource_provider.h', 41 'resources/ui_resource_provider.h',
31 'ui_android_export.h', 42 'ui_android_export.h',
32 'ui_android_jni_registrar.cc', 43 'ui_android_jni_registrar.cc',
33 'ui_android_jni_registrar.h', 44 'ui_android_jni_registrar.h',
34 'view_android.cc', 45 'view_android.cc',
35 'view_android.h', 46 'view_android.h',
36 'window_android.cc', 47 'window_android.cc',
37 'window_android.h', 48 'window_android.h',
49 'window_android_compositor.cc',
38 'window_android_compositor.h', 50 'window_android_compositor.h',
39 'window_android_observer.h', 51 'window_android_observer.h',
40 ], 52 ],
41 }, 53 },
42 { 54 {
43 'target_name': 'ui_android_jni_headers', 55 'target_name': 'ui_android_jni_headers',
44 'type': 'none', 56 'type': 'none',
45 'sources': [ 57 'sources': [
46 'java/src/org/chromium/ui/base/WindowAndroid.java', 58 'java/src/org/chromium/ui/base/WindowAndroid.java',
47 'java/src/org/chromium/ui/resources/ResourceManager.java', 59 'java/src/org/chromium/ui/resources/ResourceManager.java',
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 '../../skia/skia.gyp:skia', 177 '../../skia/skia.gyp:skia',
166 '../../testing/android/native_test.gyp:native_test_native_code', 178 '../../testing/android/native_test.gyp:native_test_native_code',
167 '../../testing/gmock.gyp:gmock', 179 '../../testing/gmock.gyp:gmock',
168 '../../testing/gtest.gyp:gtest', 180 '../../testing/gtest.gyp:gtest',
169 '../base/ui_base.gyp:ui_base', 181 '../base/ui_base.gyp:ui_base',
170 '../gfx/gfx.gyp:gfx', 182 '../gfx/gfx.gyp:gfx',
171 '../resources/ui_resources.gyp:ui_test_pak', 183 '../resources/ui_resources.gyp:ui_test_pak',
172 'ui_android', 184 'ui_android',
173 ], 185 ],
174 'sources': [ 186 'sources': [
187 'overscroll_refresh_unittest.cc',
175 'resources/resource_manager_impl_unittest.cc', 188 'resources/resource_manager_impl_unittest.cc',
176 'run_all_unittests.cc', 189 'run_all_unittests.cc',
177 ], 190 ],
178 }, 191 },
179 { 192 {
180 'target_name': 'ui_android_unittests_apk', 193 'target_name': 'ui_android_unittests_apk',
181 'type': 'none', 194 'type': 'none',
182 'dependencies': [ 195 'dependencies': [
183 'ui_android_unittests', 196 'ui_android_unittests',
184 'ui_java', 197 'ui_java',
(...skipping 19 matching lines...) Expand all
204 ], 217 ],
205 'sources': [ 218 'sources': [
206 'ui_android_unittests_apk.isolate', 219 'ui_android_unittests_apk.isolate',
207 ], 220 ],
208 }, 221 },
209 ] 222 ]
210 } 223 }
211 ], 224 ],
212 ] 225 ]
213 } 226 }
OLDNEW
« no previous file with comments | « ui/android/overscroll_refresh_unittest.cc ('k') | ui/android/window_android_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698