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

Side by Side Diff: chromecast/chromecast.gyp

Issue 486573002: Move webkit resources over to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm the build files from webkit/glue/resources 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'includes': [ '../build/grit_action.gypi' ], 84 'includes': [ '../build/grit_action.gypi' ],
85 }, 85 },
86 ], 86 ],
87 'includes': [ '../build/grit_target.gypi' ], 87 'includes': [ '../build/grit_target.gypi' ],
88 }, 88 },
89 { 89 {
90 'target_name': 'cast_shell_pak', 90 'target_name': 'cast_shell_pak',
91 'type': 'none', 91 'type': 'none',
92 'dependencies': [ 92 'dependencies': [
93 'cast_shell_resources', 93 'cast_shell_resources',
94 '../content/app/resources/content_resources.gyp:content_resources',
94 '../content/app/strings/content_strings.gyp:content_strings', 95 '../content/app/strings/content_strings.gyp:content_strings',
95 '../content/browser/devtools/devtools_resources.gyp:devtools_resources', 96 '../content/browser/devtools/devtools_resources.gyp:devtools_resources',
96 '../content/content_resources.gyp:content_resources', 97 '../content/content_resources.gyp:content_resources',
97 '../net/net.gyp:net_resources', 98 '../net/net.gyp:net_resources',
98 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', 99 '../third_party/WebKit/public/blink_resources.gyp:blink_resources',
99 '../ui/resources/ui_resources.gyp:ui_resources', 100 '../ui/resources/ui_resources.gyp:ui_resources',
100 '../ui/strings/ui_strings.gyp:ui_strings', 101 '../ui/strings/ui_strings.gyp:ui_strings',
101 '../webkit/glue/resources/webkit_resources.gyp:webkit_resources',
102 ], 102 ],
103 'actions': [ 103 'actions': [
104 { 104 {
105 'action_name': 'repack_cast_shell_pack', 105 'action_name': 'repack_cast_shell_pack',
106 'variables': { 106 'variables': {
107 'pak_inputs': [ 107 'pak_inputs': [
108 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources .pak', 108 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources .pak',
109 '<(SHARED_INTERMEDIATE_DIR)/chromecast/shell_resources.pak', 109 '<(SHARED_INTERMEDIATE_DIR)/chromecast/shell_resources.pak',
110 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', 110 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak',
111 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources/content_resource s_100_percent.pak',
111 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en -US.pak', 112 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en -US.pak',
112 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', 113 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak',
113 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent. pak', 114 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent. pak',
114 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', 115 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak',
115 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p ak', 116 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p ak',
116 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', 117 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak',
117 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', 118 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',
118 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa k',
119 ], 119 ],
120 'pak_output': '<(PRODUCT_DIR)/assets/cast_shell.pak', 120 'pak_output': '<(PRODUCT_DIR)/assets/cast_shell.pak',
121 }, 121 },
122 'includes': [ '../build/repack_action.gypi' ], 122 'includes': [ '../build/repack_action.gypi' ],
123 }, 123 },
124 ], 124 ],
125 }, 125 },
126 { 126 {
127 'target_name': 'cast_shell', 127 'target_name': 'cast_shell',
128 'type': 'executable', 128 'type': 'executable',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 '<@(_outputs)', 213 '<@(_outputs)',
214 ], 214 ],
215 'includes': [ 215 'includes': [
216 '../build/util/version.gypi', 216 '../build/util/version.gypi',
217 ], 217 ],
218 }, 218 },
219 ], 219 ],
220 }, 220 },
221 ], # end of targets 221 ], # end of targets
222 } 222 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698