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

Side by Side Diff: chrome/chrome_android.gypi

Issue 185113002: Add UI hook for distilling web pages for test shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'package_name': 'chromium_testshell', 7 'package_name': 'chromium_testshell',
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'chrome_android_paks.gypi', # Included for the list of pak resources. 10 'chrome_android_paks.gypi', # Included for the list of pak resources.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 ], 46 ],
47 }, 47 },
48 { 48 {
49 'target_name': 'chromium_testshell', 49 'target_name': 'chromium_testshell',
50 'type': 'none', 50 'type': 'none',
51 'dependencies': [ 51 'dependencies': [
52 '../media/media.gyp:media_java', 52 '../media/media.gyp:media_java',
53 'chrome.gyp:chrome_java', 53 'chrome.gyp:chrome_java',
54 'chromium_testshell_paks', 54 'chromium_testshell_paks',
55 'libchromiumtestshell', 55 'libchromiumtestshell',
56 '../components/components.gyp:dom_distiller_core_java',
cjhopman 2014/03/03 16:54:46 sort these dependencies
nyquist 2014/03/03 23:17:07 Done.
56 ], 57 ],
57 'variables': { 58 'variables': {
58 'apk_name': 'ChromiumTestShell', 59 'apk_name': 'ChromiumTestShell',
59 'manifest_package_name': 'org.chromium.chrome.testshell', 60 'manifest_package_name': 'org.chromium.chrome.testshell',
60 'java_in_dir': 'android/testshell/java', 61 'java_in_dir': 'android/testshell/java',
61 'resource_dir': 'android/testshell/res', 62 'resource_dir': 'android/testshell/res',
62 'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)', 63 'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
63 'native_lib_target': 'libchromiumtestshell', 64 'native_lib_target': 'libchromiumtestshell',
64 'native_lib_version_name': '<(version_full)', 65 'native_lib_version_name': '<(version_full)',
65 'additional_input_paths': [ 66 'additional_input_paths': [
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 { 123 {
123 'destination': '<(chrome_android_pak_output_folder)', 124 'destination': '<(chrome_android_pak_output_folder)',
124 'files': [ 125 'files': [
125 '<@(chrome_android_pak_input_resources)', 126 '<@(chrome_android_pak_input_resources)',
126 ], 127 ],
127 } 128 }
128 ], 129 ],
129 }, 130 },
130 ], 131 ],
131 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698