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

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: Fixed Chromium copyright statement. 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 3166 matching lines...) Expand 10 before | Expand all | Expand 10 after
3177 ['use_aura==0 or OS=="win"', { 3177 ['use_aura==0 or OS=="win"', {
3178 'sources!': [ 3178 'sources!': [
3179 'browser/background/background_mode_manager_aura.cc', 3179 'browser/background/background_mode_manager_aura.cc',
3180 ], 3180 ],
3181 }], 3181 }],
3182 ], 3182 ],
3183 }], 3183 }],
3184 ['enable_task_manager==1', { 3184 ['enable_task_manager==1', {
3185 'sources': [ '<@(chrome_browser_task_manager_sources)' ], 3185 'sources': [ '<@(chrome_browser_task_manager_sources)' ],
3186 }], 3186 }],
3187 ['enable_media_router==1', {
3188 'dependencies': [
3189 'browser/media/router/media_router.gyp:media_router',
3190 ],
3191 }],
3187 ['enable_spellcheck==1', { 3192 ['enable_spellcheck==1', {
3188 'sources': [ '<@(chrome_browser_spellchecker_sources)' ], 3193 'sources': [ '<@(chrome_browser_spellchecker_sources)' ],
3189 'dependencies': [ 3194 'dependencies': [
3190 '../third_party/hunspell/hunspell.gyp:hunspell', 3195 '../third_party/hunspell/hunspell.gyp:hunspell',
3191 ], 3196 ],
3192 }], 3197 }],
3193 ['disable_nacl==0', { 3198 ['disable_nacl==0', {
3194 'sources': [ '<@(chrome_browser_nacl_sources)' ], 3199 'sources': [ '<@(chrome_browser_nacl_sources)' ],
3195 'dependencies': [ 3200 'dependencies': [
3196 '../components/nacl.gyp:nacl_browser', 3201 '../components/nacl.gyp:nacl_browser',
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
3747 'variables': { 3752 'variables': {
3748 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3753 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3749 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3754 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3750 }, 3755 },
3751 'includes': [ '../build/protoc.gypi' ] 3756 'includes': [ '../build/protoc.gypi' ]
3752 }, 3757 },
3753 ], 3758 ],
3754 },], 3759 },],
3755 ], 3760 ],
3756 } 3761 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698