| 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 '../../testing/gmock.gyp:gmock', |
| 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 'resources/resource_manager.cc', | 27 'resources/resource_manager.cc', |
| 27 'resources/resource_manager.h', | 28 'resources/resource_manager.h', |
| 28 'resources/resource_manager_impl.cc', | 29 'resources/resource_manager_impl.cc', |
| 29 'resources/resource_manager_impl.h', | 30 'resources/resource_manager_impl.h', |
| 30 'resources/ui_resource_android.cc', | |
| 31 'resources/ui_resource_android.h', | |
| 32 'resources/ui_resource_client_android.h', | |
| 33 'resources/ui_resource_provider.cc', | |
| 34 'resources/ui_resource_provider.h', | 31 'resources/ui_resource_provider.h', |
| 35 'ui_android_export.h', | 32 'ui_android_export.h', |
| 36 'ui_android_jni_registrar.cc', | 33 'ui_android_jni_registrar.cc', |
| 37 'ui_android_jni_registrar.h', | 34 'ui_android_jni_registrar.h', |
| 38 'view_android.cc', | 35 'view_android.cc', |
| 39 'view_android.h', | 36 'view_android.h', |
| 40 'window_android.cc', | 37 'window_android.cc', |
| 41 'window_android.h', | 38 'window_android.h', |
| 42 'window_android_compositor.h', | 39 'window_android_compositor.h', |
| 43 'window_android_observer.h', | 40 'window_android_observer.h', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 ], | 203 ], |
| 207 'sources': [ | 204 'sources': [ |
| 208 'ui_android_unittests_apk.isolate', | 205 'ui_android_unittests_apk.isolate', |
| 209 ], | 206 ], |
| 210 }, | 207 }, |
| 211 ] | 208 ] |
| 212 } | 209 } |
| 213 ], | 210 ], |
| 214 ] | 211 ] |
| 215 } | 212 } |
| OLD | NEW |