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 3220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3231 'sources': [ '<@(chrome_browser_captive_portal_sources)' ] | 3231 'sources': [ '<@(chrome_browser_captive_portal_sources)' ] |
3232 }], | 3232 }], |
3233 ['enable_session_service==1', { | 3233 ['enable_session_service==1', { |
3234 'sources': [ '<@(chrome_browser_session_service_sources)' ], | 3234 'sources': [ '<@(chrome_browser_session_service_sources)' ], |
3235 }], | 3235 }], |
3236 ['OS=="android" or OS=="ios"', { | 3236 ['OS=="android" or OS=="ios"', { |
3237 'sources': [ '<@(chrome_browser_mobile_sources)' ], | 3237 'sources': [ '<@(chrome_browser_mobile_sources)' ], |
3238 }, { # OS!="android" and OS!="ios" | 3238 }, { # OS!="android" and OS!="ios" |
3239 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], | 3239 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], |
3240 'dependencies': [ | 3240 'dependencies': [ |
3241 '../components/components.gyp:usb_service', | |
3242 '../device/core/core.gyp:device_core', | 3241 '../device/core/core.gyp:device_core', |
| 3242 '../device/usb/usb.gyp:device_usb', |
3243 ] | 3243 ] |
3244 }], | 3244 }], |
3245 ['OS=="android"', { | 3245 ['OS=="android"', { |
3246 'dependencies': [ | 3246 'dependencies': [ |
3247 '../components/components.gyp:cdm_browser', | 3247 '../components/components.gyp:cdm_browser', |
3248 '../components/components.gyp:enhanced_bookmarks', | 3248 '../components/components.gyp:enhanced_bookmarks', |
3249 '../components/components.gyp:web_contents_delegate_android', | 3249 '../components/components.gyp:web_contents_delegate_android', |
3250 '../third_party/android_opengl/etc1/etc1.gyp:etc1', | 3250 '../third_party/android_opengl/etc1/etc1.gyp:etc1', |
3251 'chrome_browser_jni_headers', | 3251 'chrome_browser_jni_headers', |
3252 ], | 3252 ], |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3567 'variables': { | 3567 'variables': { |
3568 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3568 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3569 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3569 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3570 }, | 3570 }, |
3571 'includes': [ '../build/protoc.gypi' ] | 3571 'includes': [ '../build/protoc.gypi' ] |
3572 }, | 3572 }, |
3573 ], | 3573 ], |
3574 },], | 3574 },], |
3575 ], | 3575 ], |
3576 } | 3576 } |
OLD | NEW |