| OLD | NEW |
| 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 3541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3552 # Partial-only printing support. | 3552 # Partial-only printing support. |
| 3553 ['enable_basic_printing==1 and enable_print_preview==0', { | 3553 ['enable_basic_printing==1 and enable_print_preview==0', { |
| 3554 'sources': [ '<@(chrome_browser_printing_basic_only_sources)' ], | 3554 'sources': [ '<@(chrome_browser_printing_basic_only_sources)' ], |
| 3555 }], | 3555 }], |
| 3556 ['enable_captive_portal_detection==1', { | 3556 ['enable_captive_portal_detection==1', { |
| 3557 'sources': [ '<@(chrome_browser_captive_portal_sources)' ] | 3557 'sources': [ '<@(chrome_browser_captive_portal_sources)' ] |
| 3558 }], | 3558 }], |
| 3559 ['enable_session_service==1', { | 3559 ['enable_session_service==1', { |
| 3560 'sources': [ '<@(chrome_browser_session_service_sources)' ], | 3560 'sources': [ '<@(chrome_browser_session_service_sources)' ], |
| 3561 }], | 3561 }], |
| 3562 ['enable_hotwording==1', { |
| 3563 'defines': [ 'ENABLE_HOTWORDING' ], |
| 3564 }], |
| 3562 ['OS!="android" and OS!="ios" and chromeos==0', { | 3565 ['OS!="android" and OS!="ios" and chromeos==0', { |
| 3563 'sources': [ '<@(chrome_browser_desktop_sources)' ], | 3566 'sources': [ '<@(chrome_browser_desktop_sources)' ], |
| 3564 }], | 3567 }], |
| 3565 ['OS=="android" or OS=="ios"', { | 3568 ['OS=="android" or OS=="ios"', { |
| 3566 'sources': [ '<@(chrome_browser_mobile_sources)' ], | 3569 'sources': [ '<@(chrome_browser_mobile_sources)' ], |
| 3567 }, { # OS!="android" and OS!="ios" | 3570 }, { # OS!="android" and OS!="ios" |
| 3568 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], | 3571 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], |
| 3569 'dependencies': [ | 3572 'dependencies': [ |
| 3570 '../components/components.gyp:feedback_component', | 3573 '../components/components.gyp:feedback_component', |
| 3571 '../device/core/core.gyp:device_core', | 3574 '../device/core/core.gyp:device_core', |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3981 'variables': { | 3984 'variables': { |
| 3982 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3985 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
| 3983 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3986 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
| 3984 }, | 3987 }, |
| 3985 'includes': [ '../build/protoc.gypi' ] | 3988 'includes': [ '../build/protoc.gypi' ] |
| 3986 }, | 3989 }, |
| 3987 ], | 3990 ], |
| 3988 },], | 3991 },], |
| 3989 ], | 3992 ], |
| 3990 } | 3993 } |
| OLD | NEW |