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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 949293004: Add media router common classes and unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: MediaSource struct is now a class Created 5 years, 9 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
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 2386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2397 'browser/search_engines/template_url_fetcher_factory.h', 2397 'browser/search_engines/template_url_fetcher_factory.h',
2398 'browser/search_engines/template_url_service_android.cc', 2398 'browser/search_engines/template_url_service_android.cc',
2399 'browser/search_engines/template_url_service_android.h', 2399 'browser/search_engines/template_url_service_android.h',
2400 'browser/search_engines/template_url_service_factory.cc', 2400 'browser/search_engines/template_url_service_factory.cc',
2401 'browser/search_engines/template_url_service_factory.h', 2401 'browser/search_engines/template_url_service_factory.h',
2402 'browser/search_engines/ui_thread_search_terms_data.cc', 2402 'browser/search_engines/ui_thread_search_terms_data.cc',
2403 'browser/search_engines/ui_thread_search_terms_data.h', 2403 'browser/search_engines/ui_thread_search_terms_data.h',
2404 'browser/search_engines/ui_thread_search_terms_data_android.cc', 2404 'browser/search_engines/ui_thread_search_terms_data_android.cc',
2405 'browser/search_engines/ui_thread_search_terms_data_android.h', 2405 'browser/search_engines/ui_thread_search_terms_data_android.h',
2406 ], 2406 ],
2407 'chrome_browser_media_router_sources': [
2408 'browser/media/router/common.h',
2409 'browser/media/router/media_route.cc',
2410 'browser/media/router/media_route.h',
2411 'browser/media/router/media_route_factory.cc',
2412 'browser/media/router/media_route_factory.h',
2413 'browser/media/router/media_route_id.h',
2414 'browser/media/router/media_sink.cc',
2415 'browser/media/router/media_sink.h',
2416 'browser/media/router/media_source.cc',
2417 'browser/media/router/media_source.h',
2418 ],
2407 'chrome_browser_service_discovery_sources': [ 2419 'chrome_browser_service_discovery_sources': [
2408 'browser/local_discovery/cloud_device_list.cc', 2420 'browser/local_discovery/cloud_device_list.cc',
2409 'browser/local_discovery/cloud_device_list.h', 2421 'browser/local_discovery/cloud_device_list.h',
2410 'browser/local_discovery/cloud_device_list_delegate.cc', 2422 'browser/local_discovery/cloud_device_list_delegate.cc',
2411 'browser/local_discovery/cloud_device_list_delegate.h', 2423 'browser/local_discovery/cloud_device_list_delegate.h',
2412 'browser/local_discovery/cloud_print_printer_list.cc', 2424 'browser/local_discovery/cloud_print_printer_list.cc',
2413 'browser/local_discovery/cloud_print_printer_list.h', 2425 'browser/local_discovery/cloud_print_printer_list.h',
2414 'browser/local_discovery/device_description.cc', 2426 'browser/local_discovery/device_description.cc',
2415 'browser/local_discovery/device_description.h', 2427 'browser/local_discovery/device_description.h',
2416 'browser/local_discovery/gcd_api_flow.cc', 2428 'browser/local_discovery/gcd_api_flow.cc',
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
3152 ['use_aura==0 or OS=="win"', { 3164 ['use_aura==0 or OS=="win"', {
3153 'sources!': [ 3165 'sources!': [
3154 'browser/background/background_mode_manager_aura.cc', 3166 'browser/background/background_mode_manager_aura.cc',
3155 ], 3167 ],
3156 }], 3168 }],
3157 ], 3169 ],
3158 }], 3170 }],
3159 ['enable_task_manager==1', { 3171 ['enable_task_manager==1', {
3160 'sources': [ '<@(chrome_browser_task_manager_sources)' ], 3172 'sources': [ '<@(chrome_browser_task_manager_sources)' ],
3161 }], 3173 }],
3174 ['enable_media_router==1', {
3175 'sources': [ '<@(chrome_browser_media_router_sources)' ],
3176 }],
3162 ['enable_spellcheck==1', { 3177 ['enable_spellcheck==1', {
3163 'sources': [ '<@(chrome_browser_spellchecker_sources)' ], 3178 'sources': [ '<@(chrome_browser_spellchecker_sources)' ],
3164 'dependencies': [ 3179 'dependencies': [
3165 '../third_party/hunspell/hunspell.gyp:hunspell', 3180 '../third_party/hunspell/hunspell.gyp:hunspell',
3166 ], 3181 ],
3167 }], 3182 }],
3168 ['disable_nacl==0', { 3183 ['disable_nacl==0', {
3169 'sources': [ '<@(chrome_browser_nacl_sources)' ], 3184 'sources': [ '<@(chrome_browser_nacl_sources)' ],
3170 'dependencies': [ 3185 'dependencies': [
3171 '../components/nacl.gyp:nacl_browser', 3186 '../components/nacl.gyp:nacl_browser',
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
3709 'variables': { 3724 'variables': {
3710 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3725 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3711 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3726 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3712 }, 3727 },
3713 'includes': [ '../build/protoc.gypi' ] 3728 'includes': [ '../build/protoc.gypi' ]
3714 }, 3729 },
3715 ], 3730 ],
3716 },], 3731 },],
3717 ], 3732 ],
3718 } 3733 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698