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

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

Issue 731133002: Upstream ResourceManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years 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
« no previous file with comments | « ui/android/resources/ui_resource_android.cc ('k') | ui/android/ui_android_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
11 # GN version: //ui/android
12 'target_name': 'ui_android',
13 'type': '<(component)',
14 'dependencies': [
15 '../../cc/cc.gyp:cc',
16 '../../base/base.gyp:base',
17 '../../skia/skia.gyp:skia',
18 '../gfx/gfx.gyp:gfx',
19 '../gfx/gfx.gyp:gfx_geometry',
20 'ui_android_jni_headers',
21 ],
22 'defines': [
23 'UI_ANDROID_IMPLEMENTATION',
24 ],
25 'sources' : [
26 'resources/resource_manager.cc',
27 'resources/resource_manager.h',
28 'resources/ui_resource_android.cc',
29 'resources/ui_resource_android.h',
30 'ui_android_export.h',
31 'ui_android_jni_registrar.cc',
32 'ui_android_jni_registrar.h',
33 ],
34 },
35 {
36 'target_name': 'ui_android_jni_headers',
37 'type': 'none',
38 'sources': [
39 'java/src/org/chromium/ui/resources/ResourceManager.java',
40 ],
41 'variables': {
42 'jni_gen_package': 'ui_android',
43 },
44 'includes': [ '../../build/jni_generator.gypi' ],
45 },
46 {
47 'target_name': 'android_resource_type_java',
48 'type': 'none',
49 'variables': {
50 'source_file': 'resources/resource_manager.h',
51 },
52 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
53 },
54 {
11 'target_name': 'bitmap_format_java', 55 'target_name': 'bitmap_format_java',
12 'type': 'none', 56 'type': 'none',
13 'variables': { 57 'variables': {
14 'source_file': '../gfx/android/java_bitmap.h', 58 'source_file': '../gfx/android/java_bitmap.h',
15 }, 59 },
16 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 60 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
17 }, 61 },
18 { 62 {
19 'target_name': 'page_transition_types_java', 63 'target_name': 'page_transition_types_java',
20 'type': 'none', 64 'type': 'none',
(...skipping 30 matching lines...) Expand all
51 'target_name': 'ui_java', 95 'target_name': 'ui_java',
52 'type': 'none', 96 'type': 'none',
53 'variables': { 97 'variables': {
54 'java_in_dir': '../../ui/android/java', 98 'java_in_dir': '../../ui/android/java',
55 'has_java_resources': 1, 99 'has_java_resources': 1,
56 'R_package': 'org.chromium.ui', 100 'R_package': 'org.chromium.ui',
57 'R_package_relpath': 'org/chromium/ui', 101 'R_package_relpath': 'org/chromium/ui',
58 }, 102 },
59 'dependencies': [ 103 'dependencies': [
60 '../../base/base.gyp:base_java', 104 '../../base/base.gyp:base_java',
105 'android_resource_type_java',
61 'bitmap_format_java', 106 'bitmap_format_java',
62 'page_transition_types_java', 107 'page_transition_types_java',
63 'system_ui_resource_type_java', 108 'system_ui_resource_type_java',
64 'ui_strings_grd', 109 'ui_strings_grd',
65 'window_open_disposition_java', 110 'window_open_disposition_java',
66 'text_input_type_java', 111 'text_input_type_java',
67 ], 112 ],
68 'includes': [ '../../build/java.gypi' ], 113 'includes': [ '../../build/java.gypi' ],
69 }, 114 },
70 { 115 {
(...skipping 15 matching lines...) Expand all
86 'type': 'none', 131 'type': 'none',
87 'variables': { 132 'variables': {
88 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', 133 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
89 }, 134 },
90 'includes': [ 135 'includes': [
91 '../../build/java_strings_grd.gypi', 136 '../../build/java_strings_grd.gypi',
92 ], 137 ],
93 }, 138 },
94 ], 139 ],
95 } 140 }
OLDNEW
« no previous file with comments | « ui/android/resources/ui_resource_android.cc ('k') | ui/android/ui_android_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698