OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |