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

Side by Side Diff: apps/shell/app_shell.gyp

Issue 290553003: app_shell: Repack extensions strings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: with dep 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
« no previous file with comments | « no previous file | 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 16 matching lines...) Expand all
27 'dependencies': [ 27 'dependencies': [
28 'app_shell_resources', 28 'app_shell_resources',
29 # Need extension related resources in common_resources.pak and 29 # Need extension related resources in common_resources.pak and
30 # renderer_resources_100_percent.pak 30 # renderer_resources_100_percent.pak
31 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 31 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
32 # Need dev-tools related resources in shell_resources.pak and 32 # Need dev-tools related resources in shell_resources.pak and
33 # devtools_resources.pak. 33 # devtools_resources.pak.
34 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_resources', 34 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_resources',
35 '<(DEPTH)/content/browser/devtools/devtools_resources.gyp:devtools_resou rces', 35 '<(DEPTH)/content/browser/devtools/devtools_resources.gyp:devtools_resou rces',
36 '<(DEPTH)/extensions/extensions_resources.gyp:extensions_resources', 36 '<(DEPTH)/extensions/extensions_resources.gyp:extensions_resources',
37 '<(DEPTH)/extensions/extensions_strings.gyp:extensions_strings',
37 '<(DEPTH)/ui/base/strings/ui_strings.gyp:ui_strings', 38 '<(DEPTH)/ui/base/strings/ui_strings.gyp:ui_strings',
38 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', 39 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
39 ], 40 ],
40 'actions': [ 41 'actions': [
41 { 42 {
42 'action_name': 'repack_app_shell_pack', 43 'action_name': 'repack_app_shell_pack',
43 'variables': { 44 'variables': {
44 'pak_inputs': [ 45 'pak_inputs': [
45 '<(SHARED_INTERMEDIATE_DIR)/apps/shell/app_shell_resources.pak', 46 '<(SHARED_INTERMEDIATE_DIR)/apps/shell/app_shell_resources.pak',
46 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.pak', 47 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.pak',
47 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.pak', 48 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.pak',
48 # TODO(jamescook): Extract the extension/app related resources 49 # TODO(jamescook): Extract the extension/app related resources
49 # from generated_resources_en-US.pak. 50 # from generated_resources_en-US.pak.
50 '<(SHARED_INTERMEDIATE_DIR)/chrome/generated_resources_en-US.pak', 51 '<(SHARED_INTERMEDIATE_DIR)/chrome/generated_resources_en-US.pak',
51 '<(SHARED_INTERMEDIATE_DIR)/chrome/renderer_resources_100_percent. pak', 52 '<(SHARED_INTERMEDIATE_DIR)/chrome/renderer_resources_100_percent. pak',
52 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak', 53 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak',
53 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_resources.pak', 54 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_resources.pak',
55 '<(SHARED_INTERMEDIATE_DIR)/extensions/strings/extensions_strings_ en-US.pak',
54 '<(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_sett ings_en-US.pak', 56 '<(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_sett ings_en-US.pak',
55 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_perce nt.pak', 57 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_perce nt.pak',
56 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_en-US.pak', 58 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_en-US.pak',
57 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', 59 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',
58 ], 60 ],
59 'pak_output': '<(PRODUCT_DIR)/app_shell.pak', 61 'pak_output': '<(PRODUCT_DIR)/app_shell.pak',
60 }, 62 },
61 'includes': [ '../../build/repack_action.gypi' ], 63 'includes': [ '../../build/repack_action.gypi' ],
62 }, 64 },
63 ], 65 ],
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'browser/shell_browsertest.cc', 201 'browser/shell_browsertest.cc',
200 'test/shell_test.h', 202 'test/shell_test.h',
201 'test/shell_test.cc', 203 'test/shell_test.cc',
202 'test/shell_test_launcher_delegate.cc', 204 'test/shell_test_launcher_delegate.cc',
203 'test/shell_test_launcher_delegate.h', 205 'test/shell_test_launcher_delegate.h',
204 'test/shell_tests_main.cc', 206 'test/shell_tests_main.cc',
205 ], 207 ],
206 }, 208 },
207 ], # targets 209 ], # targets
208 } 210 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698