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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1165223004: Introduce the devices Mojo app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 3581 matching lines...) Expand 10 before | Expand all | Expand 10 after
3592 ['OS!="android" and OS!="ios" and chromeos==0', { 3592 ['OS!="android" and OS!="ios" and chromeos==0', {
3593 'sources': [ '<@(chrome_browser_desktop_sources)' ], 3593 'sources': [ '<@(chrome_browser_desktop_sources)' ],
3594 }], 3594 }],
3595 ['OS=="android" or OS=="ios"', { 3595 ['OS=="android" or OS=="ios"', {
3596 'sources': [ '<@(chrome_browser_mobile_sources)' ], 3596 'sources': [ '<@(chrome_browser_mobile_sources)' ],
3597 }, { # OS!="android" and OS!="ios" 3597 }, { # OS!="android" and OS!="ios"
3598 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], 3598 'sources': [ '<@(chrome_browser_non_mobile_sources)' ],
3599 'dependencies': [ 3599 'dependencies': [
3600 '../components/components.gyp:feedback_component', 3600 '../components/components.gyp:feedback_component',
3601 '../device/core/core.gyp:device_core', 3601 '../device/core/core.gyp:device_core',
3602 '../device/devices_app/devices_app.gyp:devices_app_lib',
3602 '../device/usb/usb.gyp:device_usb', 3603 '../device/usb/usb.gyp:device_usb',
3603 '../net/net.gyp:net_browser_services', 3604 '../net/net.gyp:net_browser_services',
3604 ] 3605 ]
3605 }], 3606 }],
3606 ['OS=="android"', { 3607 ['OS=="android"', {
3607 'dependencies': [ 3608 'dependencies': [
3608 '../build/android/ndk.gyp:cpu_features', 3609 '../build/android/ndk.gyp:cpu_features',
3609 '../components/components.gyp:cdm_browser', 3610 '../components/components.gyp:cdm_browser',
3610 '../components/components.gyp:data_reduction_proxy_content', 3611 '../components/components.gyp:data_reduction_proxy_content',
3611 '../components/components.gyp:enhanced_bookmarks', 3612 '../components/components.gyp:enhanced_bookmarks',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
4014 'variables': { 4015 'variables': {
4015 'proto_in_dir': 'browser/sync_file_system/drive_backend', 4016 'proto_in_dir': 'browser/sync_file_system/drive_backend',
4016 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 4017 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
4017 }, 4018 },
4018 'includes': [ '../build/protoc.gypi' ] 4019 'includes': [ '../build/protoc.gypi' ]
4019 }, 4020 },
4020 ], 4021 ],
4021 },], 4022 },],
4022 ], 4023 ],
4023 } 4024 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698