OLD | NEW |
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 'resources/crushed_sprite_resource.cc', |
| 27 'resources/crushed_sprite_resource.h', |
26 'resources/resource_manager.cc', | 28 'resources/resource_manager.cc', |
27 'resources/resource_manager.h', | 29 'resources/resource_manager.h', |
28 'resources/resource_manager_impl.cc', | 30 'resources/resource_manager_impl.cc', |
29 'resources/resource_manager_impl.h', | 31 'resources/resource_manager_impl.h', |
30 'resources/ui_resource_provider.h', | 32 'resources/ui_resource_provider.h', |
31 'ui_android_export.h', | 33 'ui_android_export.h', |
32 'ui_android_jni_registrar.cc', | 34 'ui_android_jni_registrar.cc', |
33 'ui_android_jni_registrar.h', | 35 'ui_android_jni_registrar.h', |
34 'view_android.cc', | 36 'view_android.cc', |
35 'view_android.h', | 37 'view_android.h', |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 ], | 206 ], |
205 'sources': [ | 207 'sources': [ |
206 'ui_android_unittests_apk.isolate', | 208 'ui_android_unittests_apk.isolate', |
207 ], | 209 ], |
208 }, | 210 }, |
209 ] | 211 ] |
210 } | 212 } |
211 ], | 213 ], |
212 ] | 214 ] |
213 } | 215 } |
OLD | NEW |