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

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: Rename namespace 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
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',
no sievers 2014/12/02 00:25:06 Should this be "ui_android" also since this is its
Jaekyun Seok (inactive) 2014/12/02 03:13:13 Done.
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 22 matching lines...) Expand all
43 'target_name': 'ui_java', 87 'target_name': 'ui_java',
44 'type': 'none', 88 'type': 'none',
45 'variables': { 89 'variables': {
46 'java_in_dir': '../../ui/android/java', 90 'java_in_dir': '../../ui/android/java',
47 'has_java_resources': 1, 91 'has_java_resources': 1,
48 'R_package': 'org.chromium.ui', 92 'R_package': 'org.chromium.ui',
49 'R_package_relpath': 'org/chromium/ui', 93 'R_package_relpath': 'org/chromium/ui',
50 }, 94 },
51 'dependencies': [ 95 'dependencies': [
52 '../../base/base.gyp:base_java', 96 '../../base/base.gyp:base_java',
97 'android_resource_type_java',
53 'bitmap_format_java', 98 'bitmap_format_java',
54 'page_transition_types_java', 99 'page_transition_types_java',
55 'system_ui_resource_type_java', 100 'system_ui_resource_type_java',
56 'ui_strings_grd', 101 'ui_strings_grd',
57 'window_open_disposition_java', 102 'window_open_disposition_java',
58 ], 103 ],
59 'includes': [ '../../build/java.gypi' ], 104 'includes': [ '../../build/java.gypi' ],
60 }, 105 },
61 { 106 {
62 'target_name': 'ui_javatests', 107 'target_name': 'ui_javatests',
(...skipping 14 matching lines...) Expand all
77 'type': 'none', 122 'type': 'none',
78 'variables': { 123 'variables': {
79 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', 124 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
80 }, 125 },
81 'includes': [ 126 'includes': [
82 '../../build/java_strings_grd.gypi', 127 '../../build/java_strings_grd.gypi',
83 ], 128 ],
84 }, 129 },
85 ], 130 ],
86 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698