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