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

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: Same fix for GN builds. Created 5 years, 6 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 3564 matching lines...) Expand 10 before | Expand all | Expand 10 after
3575 # Partial-only printing support. 3575 # Partial-only printing support.
3576 ['enable_basic_printing==1 and enable_print_preview==0', { 3576 ['enable_basic_printing==1 and enable_print_preview==0', {
3577 'sources': [ '<@(chrome_browser_printing_basic_only_sources)' ], 3577 'sources': [ '<@(chrome_browser_printing_basic_only_sources)' ],
3578 }], 3578 }],
3579 ['enable_captive_portal_detection==1', { 3579 ['enable_captive_portal_detection==1', {
3580 'sources': [ '<@(chrome_browser_captive_portal_sources)' ] 3580 'sources': [ '<@(chrome_browser_captive_portal_sources)' ]
3581 }], 3581 }],
3582 ['enable_session_service==1', { 3582 ['enable_session_service==1', {
3583 'sources': [ '<@(chrome_browser_session_service_sources)' ], 3583 'sources': [ '<@(chrome_browser_session_service_sources)' ],
3584 }], 3584 }],
3585 ['enable_hotwording==1', {
3586 'defines': [ 'ENABLE_HOTWORDING' ],
3587 }],
3588 ['OS!="android" and OS!="ios" and chromeos==0', { 3585 ['OS!="android" and OS!="ios" and chromeos==0', {
3589 'sources': [ '<@(chrome_browser_desktop_sources)' ], 3586 'sources': [ '<@(chrome_browser_desktop_sources)' ],
3590 }], 3587 }],
3591 ['OS=="android" or OS=="ios"', { 3588 ['OS=="android" or OS=="ios"', {
3592 'sources': [ '<@(chrome_browser_mobile_sources)' ], 3589 'sources': [ '<@(chrome_browser_mobile_sources)' ],
3593 }, { # OS!="android" and OS!="ios" 3590 }, { # OS!="android" and OS!="ios"
3594 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], 3591 'sources': [ '<@(chrome_browser_non_mobile_sources)' ],
3595 'dependencies': [ 3592 'dependencies': [
3596 '../components/components.gyp:feedback_component', 3593 '../components/components.gyp:feedback_component',
3597 '../device/core/core.gyp:device_core', 3594 '../device/core/core.gyp:device_core',
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
4011 'variables': { 4008 'variables': {
4012 'proto_in_dir': 'browser/sync_file_system/drive_backend', 4009 'proto_in_dir': 'browser/sync_file_system/drive_backend',
4013 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 4010 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
4014 }, 4011 },
4015 'includes': [ '../build/protoc.gypi' ] 4012 'includes': [ '../build/protoc.gypi' ]
4016 }, 4013 },
4017 ], 4014 ],
4018 },], 4015 },],
4019 ], 4016 ],
4020 } 4017 }
OLDNEW
« build/config/BUILD.gn ('K') | « chrome/browser/extensions/external_component_loader.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698