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

Side by Side Diff: chromecast/chromecast.gyp

Issue 423613003: Move strings from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix athena Created 6 years, 4 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 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 'chromecast_branding%': 'Chromium', 8 'chromecast_branding%': 'Chromium',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 { 61 {
62 'target_name': 'cast_shell_resources', 62 'target_name': 'cast_shell_resources',
63 'type': 'none', 63 'type': 'none',
64 # Place holder for cast_shell specific resources. 64 # Place holder for cast_shell specific resources.
65 }, 65 },
66 { 66 {
67 'target_name': 'cast_shell_pak', 67 'target_name': 'cast_shell_pak',
68 'type': 'none', 68 'type': 'none',
69 'dependencies': [ 69 'dependencies': [
70 'cast_shell_resources', 70 'cast_shell_resources',
71 '../content/app/strings/content_strings.gyp:content_strings',
71 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', 72 '../content/browser/devtools/devtools_resources.gyp:devtools_resources',
72 '../content/content_resources.gyp:content_resources', 73 '../content/content_resources.gyp:content_resources',
73 '../net/net.gyp:net_resources', 74 '../net/net.gyp:net_resources',
74 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', 75 '../third_party/WebKit/public/blink_resources.gyp:blink_resources',
75 '../ui/resources/ui_resources.gyp:ui_resources', 76 '../ui/resources/ui_resources.gyp:ui_resources',
76 '../ui/strings/ui_strings.gyp:ui_strings', 77 '../ui/strings/ui_strings.gyp:ui_strings',
77 '../webkit/webkit_resources.gyp:webkit_resources', 78 '../webkit/webkit_resources.gyp:webkit_resources',
78 '../webkit/webkit_resources.gyp:webkit_strings',
79 ], 79 ],
80 'actions': [ 80 'actions': [
81 { 81 {
82 'action_name': 'repack_cast_shell_pack', 82 'action_name': 'repack_cast_shell_pack',
83 'variables': { 83 'variables': {
84 'pak_inputs': [ 84 'pak_inputs': [
85 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources .pak', 85 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources .pak',
86 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', 86 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak',
87 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en -US.pak',
87 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', 88 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak',
88 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent. pak', 89 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent. pak',
89 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', 90 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak',
90 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p ak', 91 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p ak',
91 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', 92 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak',
92 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', 93 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',
93 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa k', 94 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa k',
94 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.pak',
95 ], 95 ],
96 'pak_output': '<(PRODUCT_DIR)/cast_shell.pak', 96 'pak_output': '<(PRODUCT_DIR)/cast_shell.pak',
97 }, 97 },
98 'includes': [ '../build/repack_action.gypi' ], 98 'includes': [ '../build/repack_action.gypi' ],
99 }, 99 },
100 ], 100 ],
101 }, 101 },
102 { 102 {
103 'target_name': 'cast_shell', 103 'target_name': 'cast_shell',
104 'type': 'executable', 104 'type': 'executable',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 '<@(_outputs)', 176 '<@(_outputs)',
177 ], 177 ],
178 'includes': [ 178 'includes': [
179 '../build/util/version.gypi', 179 '../build/util/version.gypi',
180 ], 180 ],
181 }, 181 },
182 ], 182 ],
183 }, 183 },
184 ], # end of targets 184 ], # end of targets
185 } 185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698