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

Side by Side Diff: build/android/tests/bad_resources/bad_resources.gyp

Issue 1136653002: Reland: Actually use --extra-r-text-files in process_resources.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits Created 5 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
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'empty_resources_dep',
12 'type': 'none',
13 'variables': {
14 'java_in_dir': 'empty_dep/java',
15 'has_java_resources': 1,
16 'R_package': 'dummy.emptydep',
17 'R_package_relpath': 'dummy/emptydep',
18 },
19 'includes': [ '../../../../build/java.gypi' ],
20 },
21 {
22 'target_name': 'bad_resources_dep',
23 'type': 'none',
24 'variables': {
25 'java_in_dir': 'dep/java',
26 'has_java_resources': 1,
27 'R_package': 'dummy.dep',
28 'R_package_relpath': 'dummy/dep',
29 },
30 'includes': [ '../../../../build/java.gypi' ],
31 },
32 {
33 'target_name': 'bad_resources_test_apk',
34 'type': 'none',
35 'dependencies': ['bad_resources_dep'],
36 'variables': {
37 'app_manifest_version_name%': '<(android_app_version_name)',
38 'java_in_dir': 'app/java',
39 'resource_dir': 'app/res',
40 'R_package': 'dummy',
41 'R_package_relpath': 'dummy',
42 'apk_name': 'BadResources',
43 # This is a build-only test. There's nothing to install.
44 'gyp_managed_install': 0,
45 # Include this APK's resources in the R.java files of its dependencies
46 'include_all_resources': 1,
47 },
48 'includes': [ '../../../../build/java_apk.gypi' ],
49 },
50 ],
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698