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

Side by Side Diff: android_webview/android_webview.gyp

Issue 255613003: Move ui and content resources into one location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing headers Created 6 years, 6 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
« no previous file with comments | « android_webview/Android.mk ('k') | android_webview/build/AndroidManifest.xml » ('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 2009 The Chromium Authors. All rights reserved. 1 # Copyright 2009 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'libwebviewchromium', 10 'target_name': 'libwebviewchromium',
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 ], 259 ],
260 'variables': { 260 'variables': {
261 'java_in_dir': '../android_webview/java', 261 'java_in_dir': '../android_webview/java',
262 }, 262 },
263 'includes': [ '../build/java.gypi' ], 263 'includes': [ '../build/java.gypi' ],
264 }, 264 },
265 ], 265 ],
266 }, { # android_webview_build==1 266 }, { # android_webview_build==1
267 'targets': [ 267 'targets': [
268 { 268 {
269 'target_name': 'android_webview_strings', 269 'target_name': 'android_webview_jarjar_ui_resources',
270 'android_unmangled_name': 1,
271 'type': 'none',
272 'variables': {
273 'res_dir': '../ui/android/java/res',
274 'rules_file': '../android_webview/build/jarjar-rules.txt',
275 },
276 'includes': ['../android_webview/build/jarjar_resources.gypi'],
277 },
278 {
279 'target_name': 'android_webview_jarjar_content_resources',
280 'android_unmangled_name': 1,
281 'type': 'none',
282 'variables': {
283 'res_dir': '../content/public/android/java/res',
284 'rules_file': '../android_webview/build/jarjar-rules.txt',
285 },
286 'includes': ['../android_webview/build/jarjar_resources.gypi'],
287 },
288 {
289 'target_name': 'android_webview_resources',
270 'type': 'none', 290 'type': 'none',
271 'android_unmangled_name': 1, 291 'android_unmangled_name': 1,
272 'dependencies': [ 292 'dependencies': [
273 '../content/content.gyp:content_strings_grd', 293 '../content/content.gyp:content_strings_grd',
274 '../ui/android/ui_android.gyp:ui_strings_grd', 294 '../ui/android/ui_android.gyp:ui_strings_grd',
295 'android_webview_jarjar_ui_resources',
296 'android_webview_jarjar_content_resources'
275 ], 297 ],
276 }, 298 },
277 ], 299 ],
278 }], 300 }],
279 ], 301 ],
280 } 302 }
OLDNEW
« no previous file with comments | « android_webview/Android.mk ('k') | android_webview/build/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698