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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1201163002: Remove hotword installation code at compile time if hotwording disabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 11 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 | « chrome/browser/search/hotword_service_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3687 matching lines...) Expand 10 before | Expand all | Expand 10 after
3698 # Partial-only printing support. 3698 # Partial-only printing support.
3699 ['enable_basic_printing==1 and enable_print_preview==0', { 3699 ['enable_basic_printing==1 and enable_print_preview==0', {
3700 'sources': [ '<@(chrome_browser_printing_basic_only_sources)' ], 3700 'sources': [ '<@(chrome_browser_printing_basic_only_sources)' ],
3701 }], 3701 }],
3702 ['enable_captive_portal_detection==1', { 3702 ['enable_captive_portal_detection==1', {
3703 'sources': [ '<@(chrome_browser_captive_portal_sources)' ] 3703 'sources': [ '<@(chrome_browser_captive_portal_sources)' ]
3704 }], 3704 }],
3705 ['enable_session_service==1', { 3705 ['enable_session_service==1', {
3706 'sources': [ '<@(chrome_browser_session_service_sources)' ], 3706 'sources': [ '<@(chrome_browser_session_service_sources)' ],
3707 }], 3707 }],
3708 ['enable_hotwording==1', {
3709 'defines': [ 'ENABLE_HOTWORDING' ],
3710 }],
3711 ['OS!="android" and OS!="ios" and chromeos==0', { 3708 ['OS!="android" and OS!="ios" and chromeos==0', {
3712 'sources': [ '<@(chrome_browser_desktop_sources)' ], 3709 'sources': [ '<@(chrome_browser_desktop_sources)' ],
3713 }], 3710 }],
3714 ['OS=="android" or OS=="ios"', { 3711 ['OS=="android" or OS=="ios"', {
3715 'sources': [ '<@(chrome_browser_mobile_sources)' ], 3712 'sources': [ '<@(chrome_browser_mobile_sources)' ],
3716 }, { # OS!="android" and OS!="ios" 3713 }, { # OS!="android" and OS!="ios"
3717 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], 3714 'sources': [ '<@(chrome_browser_non_mobile_sources)' ],
3718 'dependencies': [ 3715 'dependencies': [
3719 '../components/components.gyp:feedback_component', 3716 '../components/components.gyp:feedback_component',
3720 '../net/net.gyp:net_browser_services', 3717 '../net/net.gyp:net_browser_services',
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
4186 '../components/components.gyp:omnibox_browser', 4183 '../components/components.gyp:omnibox_browser',
4187 '../components/components.gyp:rlz', 4184 '../components/components.gyp:rlz',
4188 '../components/components.gyp:search_engines', 4185 '../components/components.gyp:search_engines',
4189 '../rlz/rlz.gyp:rlz_lib', 4186 '../rlz/rlz.gyp:rlz_lib',
4190 ], 4187 ],
4191 }, 4188 },
4192 ], 4189 ],
4193 }], 4190 }],
4194 ], 4191 ],
4195 } 4192 }
OLDNEW
« no previous file with comments | « chrome/browser/search/hotword_service_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698