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

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

Issue 270633015: [android] Generate strings.xml for android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« content/content.gyp ('K') | « content/content.gyp ('k') | no next file » | 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 {
(...skipping 21 matching lines...) Expand all
32 'includes': [ '../../build/android/java_cpp_template.gypi' ], 32 'includes': [ '../../build/android/java_cpp_template.gypi' ],
33 }, 33 },
34 { 34 {
35 'target_name': 'ui_java', 35 'target_name': 'ui_java',
36 'type': 'none', 36 'type': 'none',
37 'variables': { 37 'variables': {
38 'java_in_dir': '../../ui/android/java', 38 'java_in_dir': '../../ui/android/java',
39 'has_java_resources': 1, 39 'has_java_resources': 1,
40 'R_package': 'org.chromium.ui', 40 'R_package': 'org.chromium.ui',
41 'R_package_relpath': 'org/chromium/ui', 41 'R_package_relpath': 'org/chromium/ui',
42 'java_strings_grd': 'android_ui_strings.grd',
43 }, 42 },
44 'dependencies': [ 43 'dependencies': [
45 '../../base/base.gyp:base_java', 44 '../../base/base.gyp:base_java',
45 'bitmap_format_java',
46 'ui_strings_grd',
46 'window_open_disposition_java', 47 'window_open_disposition_java',
47 'bitmap_format_java',
48 ], 48 ],
49 'includes': [ '../../build/java.gypi' ], 49 'includes': [ '../../build/java.gypi' ],
50 }, 50 },
51 {
52 'target_name': 'ui_strings_grd',
53 'type': 'none',
54 'variables': {
55 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd',
56 },
57 'includes': [
58 '../../build/java_strings_grd.gypi',
59 ],
60 },
51 ], 61 ],
52 } 62 }
OLDNEW
« content/content.gyp ('K') | « content/content.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698