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 '../../cc/cc.gyp:cc_surfaces', | |
David Trainor- moved to gerrit
2016/08/04 16:05:46
Don't need gyp changes IIRC
Khushal
2016/08/09 20:54:07
YES!!
| |
17 '../../skia/skia.gyp:skia', | 18 '../../skia/skia.gyp:skia', |
18 '../gfx/gfx.gyp:gfx', | 19 '../gfx/gfx.gyp:gfx', |
19 '../gfx/gfx.gyp:gfx_geometry', | 20 '../gfx/gfx.gyp:gfx_geometry', |
20 'ui_android_jni_headers', | 21 'ui_android_jni_headers', |
21 ], | 22 ], |
22 'defines': [ | 23 'defines': [ |
23 'UI_ANDROID_IMPLEMENTATION', | 24 'UI_ANDROID_IMPLEMENTATION', |
24 ], | 25 ], |
25 'sources' : [ | 26 'sources' : [ |
26 'animation_utils.h', | 27 'animation_utils.h', |
27 'context_provider_factory.cc', | 28 'context_provider_factory.cc', |
28 'context_provider_factory.h', | 29 'context_provider_factory.h', |
30 'delegated_frame_host_android.cc', | |
31 'delegated_frame_host_android.h', | |
29 'edge_effect.cc', | 32 'edge_effect.cc', |
30 'edge_effect.h', | 33 'edge_effect.h', |
31 'edge_effect_base.cc', | 34 'edge_effect_base.cc', |
32 'edge_effect_base.h', | 35 'edge_effect_base.h', |
33 'edge_effect_l.cc', | 36 'edge_effect_l.cc', |
34 'edge_effect_l.h', | 37 'edge_effect_l.h', |
35 'overscroll_glow.cc', | 38 'overscroll_glow.cc', |
36 'overscroll_glow.h', | 39 'overscroll_glow.h', |
37 'overscroll_refresh.cc', | 40 'overscroll_refresh.cc', |
38 'overscroll_refresh.h', | 41 'overscroll_refresh.h', |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
242 ], | 245 ], |
243 'sources': [ | 246 'sources': [ |
244 'ui_android_unittests_apk.isolate', | 247 'ui_android_unittests_apk.isolate', |
245 ], | 248 ], |
246 }, | 249 }, |
247 ] | 250 ] |
248 } | 251 } |
249 ], | 252 ], |
250 ] | 253 ] |
251 } | 254 } |
OLD | NEW |