| 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 { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'resources/resource_manager_impl.cc', | 28 'resources/resource_manager_impl.cc', |
| 29 'resources/resource_manager_impl.h', | 29 'resources/resource_manager_impl.h', |
| 30 'resources/ui_resource_android.cc', | 30 'resources/ui_resource_android.cc', |
| 31 'resources/ui_resource_android.h', | 31 'resources/ui_resource_android.h', |
| 32 'resources/ui_resource_client_android.h', | 32 'resources/ui_resource_client_android.h', |
| 33 'resources/ui_resource_provider.cc', | 33 'resources/ui_resource_provider.cc', |
| 34 'resources/ui_resource_provider.h', | 34 'resources/ui_resource_provider.h', |
| 35 'ui_android_export.h', | 35 'ui_android_export.h', |
| 36 'ui_android_jni_registrar.cc', | 36 'ui_android_jni_registrar.cc', |
| 37 'ui_android_jni_registrar.h', | 37 'ui_android_jni_registrar.h', |
| 38 'view_android.cc', |
| 39 'view_android.h', |
| 40 'window_android.cc', |
| 41 'window_android.h', |
| 42 'window_android_compositor.h', |
| 43 'window_android_observer.h', |
| 38 ], | 44 ], |
| 39 }, | 45 }, |
| 40 { | 46 { |
| 41 'target_name': 'ui_android_jni_headers', | 47 'target_name': 'ui_android_jni_headers', |
| 42 'type': 'none', | 48 'type': 'none', |
| 43 'sources': [ | 49 'sources': [ |
| 50 'java/src/org/chromium/ui/base/ViewAndroid.java', |
| 51 'java/src/org/chromium/ui/base/WindowAndroid.java', |
| 44 'java/src/org/chromium/ui/resources/ResourceManager.java', | 52 'java/src/org/chromium/ui/resources/ResourceManager.java', |
| 45 ], | 53 ], |
| 46 'variables': { | 54 'variables': { |
| 47 'jni_gen_package': 'ui_android', | 55 'jni_gen_package': 'ui_android', |
| 48 }, | 56 }, |
| 49 'includes': [ '../../build/jni_generator.gypi' ], | 57 'includes': [ '../../build/jni_generator.gypi' ], |
| 50 }, | 58 }, |
| 51 { | 59 { |
| 52 'target_name': 'android_resource_type_java', | 60 'target_name': 'android_resource_type_java', |
| 53 'type': 'none', | 61 'type': 'none', |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'ui_android_unittests', | 186 'ui_android_unittests', |
| 179 'ui_java', | 187 'ui_java', |
| 180 ], | 188 ], |
| 181 'variables': { | 189 'variables': { |
| 182 'test_suite_name': 'ui_android_unittests', | 190 'test_suite_name': 'ui_android_unittests', |
| 183 }, | 191 }, |
| 184 'includes': [ '../../build/apk_test.gypi' ], | 192 'includes': [ '../../build/apk_test.gypi' ], |
| 185 }, | 193 }, |
| 186 ], | 194 ], |
| 187 } | 195 } |
| OLD | NEW |