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

Side by Side Diff: chromecast/chromecast.gyp

Issue 598303002: Chromecast: adds CastNetworkDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removes gyp dep Created 6 years, 2 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
« no previous file with comments | « no previous file | chromecast/common/chromecast_switches.h » ('j') | 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 'chromecast_branding%': 'Chromium', 8 'chromecast_branding%': 'Chromium',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 'shell/browser/cast_browser_main_parts.cc', 219 'shell/browser/cast_browser_main_parts.cc',
220 'shell/browser/cast_browser_main_parts.h', 220 'shell/browser/cast_browser_main_parts.h',
221 'shell/browser/cast_browser_process.cc', 221 'shell/browser/cast_browser_process.cc',
222 'shell/browser/cast_browser_process.h', 222 'shell/browser/cast_browser_process.h',
223 'shell/browser/cast_content_browser_client.cc', 223 'shell/browser/cast_content_browser_client.cc',
224 'shell/browser/cast_content_browser_client.h', 224 'shell/browser/cast_content_browser_client.h',
225 'shell/browser/cast_download_manager_delegate.cc', 225 'shell/browser/cast_download_manager_delegate.cc',
226 'shell/browser/cast_download_manager_delegate.h', 226 'shell/browser/cast_download_manager_delegate.h',
227 'shell/browser/cast_http_user_agent_settings.cc', 227 'shell/browser/cast_http_user_agent_settings.cc',
228 'shell/browser/cast_http_user_agent_settings.h', 228 'shell/browser/cast_http_user_agent_settings.h',
229 'shell/browser/cast_network_delegate.cc',
230 'shell/browser/cast_network_delegate.h',
229 'shell/browser/devtools/cast_dev_tools_delegate.cc', 231 'shell/browser/devtools/cast_dev_tools_delegate.cc',
230 'shell/browser/devtools/cast_dev_tools_delegate.h', 232 'shell/browser/devtools/cast_dev_tools_delegate.h',
231 'shell/browser/devtools/remote_debugging_server.cc', 233 'shell/browser/devtools/remote_debugging_server.cc',
232 'shell/browser/devtools/remote_debugging_server.h', 234 'shell/browser/devtools/remote_debugging_server.h',
233 'shell/browser/geolocation/cast_access_token_store.cc', 235 'shell/browser/geolocation/cast_access_token_store.cc',
234 'shell/browser/geolocation/cast_access_token_store.h', 236 'shell/browser/geolocation/cast_access_token_store.h',
235 'shell/browser/url_request_context_factory.cc', 237 'shell/browser/url_request_context_factory.cc',
236 'shell/browser/url_request_context_factory.h', 238 'shell/browser/url_request_context_factory.h',
237 'shell/browser/webui/webui_cast.h', 239 'shell/browser/webui/webui_cast.h',
238 'shell/common/cast_content_client.cc', 240 'shell/common/cast_content_client.cc',
239 'shell/common/cast_content_client.h', 241 'shell/common/cast_content_client.h',
240 'shell/renderer/cast_content_renderer_client.cc', 242 'shell/renderer/cast_content_renderer_client.cc',
241 'shell/renderer/cast_content_renderer_client.h', 243 'shell/renderer/cast_content_renderer_client.h',
242 'shell/renderer/key_systems_cast.cc', 244 'shell/renderer/key_systems_cast.cc',
243 'shell/renderer/key_systems_cast.h', 245 'shell/renderer/key_systems_cast.h',
244 ], 246 ],
245 'conditions': [ 247 'conditions': [
246 ['chromecast_branding=="Chrome"', { 248 ['chromecast_branding=="Chrome"', {
247 'dependencies': [ 249 'dependencies': [
248 'internal/chromecast_internal.gyp:cast_shell_internal', 250 'internal/chromecast_internal.gyp:cast_shell_internal',
249 ], 251 ],
250 }, { 252 }, {
251 'sources': [ 253 'sources': [
254 'shell/browser/cast_network_delegate_simple.cc',
252 'shell/browser/devtools/remote_debugging_server_simple.cc', 255 'shell/browser/devtools/remote_debugging_server_simple.cc',
253 'shell/browser/webui/webui_cast_simple.cc', 256 'shell/browser/webui/webui_cast_simple.cc',
254 'shell/renderer/key_systems_cast_simple.cc', 257 'shell/renderer/key_systems_cast_simple.cc',
255 ], 258 ],
256 }], 259 }],
257 ], 260 ],
258 }, 261 },
259 { 262 {
260 'target_name': 'cast_version_header', 263 'target_name': 'cast_version_header',
261 'type': 'none', 264 'type': 'none',
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 'sources': [ 473 'sources': [
471 'shell/browser/test/chromecast_browser_test.cc', 474 'shell/browser/test/chromecast_browser_test.cc',
472 'shell/browser/test/chromecast_browser_test.h', 475 'shell/browser/test/chromecast_browser_test.h',
473 'shell/browser/test/chromecast_browser_test_runner.cc', 476 'shell/browser/test/chromecast_browser_test_runner.cc',
474 ], 477 ],
475 }, 478 },
476 ], # end of targets 479 ], # end of targets
477 }], 480 }],
478 ], # end of conditions 481 ], # end of conditions
479 } 482 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/common/chromecast_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698