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

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

Issue 2103243002: Factor out ContentViewAndroidDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 4 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
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 {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'window_android.cc', 48 'window_android.cc',
49 'window_android.h', 49 'window_android.h',
50 'window_android_compositor.h', 50 'window_android_compositor.h',
51 'window_android_observer.h', 51 'window_android_observer.h',
52 ], 52 ],
53 }, 53 },
54 { 54 {
55 'target_name': 'ui_android_jni_headers', 55 'target_name': 'ui_android_jni_headers',
56 'type': 'none', 56 'type': 'none',
57 'sources': [ 57 'sources': [
58 'java/src/org/chromium/ui/base/ViewAndroidDelegate.java',
58 'java/src/org/chromium/ui/base/WindowAndroid.java', 59 'java/src/org/chromium/ui/base/WindowAndroid.java',
59 'java/src/org/chromium/ui/resources/ResourceManager.java', 60 'java/src/org/chromium/ui/resources/ResourceManager.java',
60 ], 61 ],
61 'variables': { 62 'variables': {
62 'jni_gen_package': 'ui_android', 63 'jni_gen_package': 'ui_android',
63 }, 64 },
64 'includes': [ '../../build/jni_generator.gypi' ], 65 'includes': [ '../../build/jni_generator.gypi' ],
65 }, 66 },
66 { 67 {
67 'target_name': 'android_resource_type_java', 68 'target_name': 'android_resource_type_java',
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 ], 241 ],
241 'sources': [ 242 'sources': [
242 'ui_android_unittests_apk.isolate', 243 'ui_android_unittests_apk.isolate',
243 ], 244 ],
244 }, 245 },
245 ] 246 ]
246 } 247 }
247 ], 248 ],
248 ] 249 ]
249 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698