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

Side by Side Diff: chromecast/chromecast.gyp

Issue 785693002: Adds DNS prefetch support to Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefetch-browser
Patch Set: Created 6 years 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
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 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'chromecast_branding%': 'Chromium', 10 'chromecast_branding%': 'Chromium',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 'cast_shell_pak', 104 'cast_shell_pak',
105 'cast_shell_resources', 105 'cast_shell_resources',
106 'cast_version_header', 106 'cast_version_header',
107 'chromecast_locales.gyp:chromecast_locales_pak', 107 'chromecast_locales.gyp:chromecast_locales_pak',
108 'chromecast_locales.gyp:chromecast_settings', 108 'chromecast_locales.gyp:chromecast_settings',
109 'media/media.gyp:media_base', 109 'media/media.gyp:media_base',
110 '../base/base.gyp:base', 110 '../base/base.gyp:base',
111 '../components/components.gyp:cdm_renderer', 111 '../components/components.gyp:cdm_renderer',
112 '../components/components.gyp:component_metrics_proto', 112 '../components/components.gyp:component_metrics_proto',
113 '../components/components.gyp:crash_component', 113 '../components/components.gyp:crash_component',
114 '../components/components.gyp:dns_prefetch_browser',
115 '../components/components.gyp:dns_prefetch_renderer',
114 '../components/components.gyp:metrics', 116 '../components/components.gyp:metrics',
115 '../components/components.gyp:metrics_gpu', 117 '../components/components.gyp:metrics_gpu',
116 '../components/components.gyp:metrics_net', 118 '../components/components.gyp:metrics_net',
117 '../components/components.gyp:metrics_profiler', 119 '../components/components.gyp:metrics_profiler',
118 '../content/content.gyp:content', 120 '../content/content.gyp:content',
119 '../content/content.gyp:content_app_browser', 121 '../content/content.gyp:content_app_browser',
120 '../skia/skia.gyp:skia', 122 '../skia/skia.gyp:skia',
121 '../third_party/WebKit/public/blink.gyp:blink', 123 '../third_party/WebKit/public/blink.gyp:blink',
122 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 124 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
123 ], 125 ],
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'common/cast_resource_delegate.h', 169 'common/cast_resource_delegate.h',
168 'common/chromecast_switches.cc', 170 'common/chromecast_switches.cc',
169 'common/chromecast_switches.h', 171 'common/chromecast_switches.h',
170 'common/platform_client_auth.h', 172 'common/platform_client_auth.h',
171 'common/pref_names.cc', 173 'common/pref_names.cc',
172 'common/pref_names.h', 174 'common/pref_names.h',
173 'renderer/cast_content_renderer_client.cc', 175 'renderer/cast_content_renderer_client.cc',
174 'renderer/cast_content_renderer_client.h', 176 'renderer/cast_content_renderer_client.h',
175 'renderer/key_systems_cast.cc', 177 'renderer/key_systems_cast.cc',
176 'renderer/key_systems_cast.h', 178 'renderer/key_systems_cast.h',
179 'renderer/prescient_networking_dispatcher.cc',
180 'renderer/prescient_networking_dispatcher.h',
177 ], 181 ],
178 'conditions': [ 182 'conditions': [
179 ['chromecast_branding=="Chrome"', { 183 ['chromecast_branding=="Chrome"', {
180 'dependencies': [ 184 'dependencies': [
181 '<(cast_internal_gyp):cast_shell_internal', 185 '<(cast_internal_gyp):cast_shell_internal',
182 ], 186 ],
183 }, { 187 }, {
184 'sources': [ 188 'sources': [
185 'browser/cast_network_delegate_simple.cc', 189 'browser/cast_network_delegate_simple.cc',
186 'browser/devtools/remote_debugging_server_simple.cc', 190 'browser/devtools/remote_debugging_server_simple.cc',
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 'cast_shell_core', 444 'cast_shell_core',
441 ], 445 ],
442 'sources': [ 446 'sources': [
443 'app/cast_main.cc', 447 'app/cast_main.cc',
444 ], 448 ],
445 }, 449 },
446 ], # end of targets 450 ], # end of targets
447 }], 451 }],
448 ], # end of conditions 452 ], # end of conditions
449 } 453 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698