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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 910343003: Create an in-process v8 proxy resolver using Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-complete-patch
Patch Set: Rebase Created 5 years, 9 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 3378 matching lines...) Expand 10 before | Expand all | Expand 10 after
3389 ['OS!="android" and OS!="ios" and chromeos==0', { 3389 ['OS!="android" and OS!="ios" and chromeos==0', {
3390 'sources': [ '<@(chrome_browser_desktop_sources)' ], 3390 'sources': [ '<@(chrome_browser_desktop_sources)' ],
3391 }], 3391 }],
3392 ['OS=="android" or OS=="ios"', { 3392 ['OS=="android" or OS=="ios"', {
3393 'sources': [ '<@(chrome_browser_mobile_sources)' ], 3393 'sources': [ '<@(chrome_browser_mobile_sources)' ],
3394 }, { # OS!="android" and OS!="ios" 3394 }, { # OS!="android" and OS!="ios"
3395 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], 3395 'sources': [ '<@(chrome_browser_non_mobile_sources)' ],
3396 'dependencies': [ 3396 'dependencies': [
3397 '../device/core/core.gyp:device_core', 3397 '../device/core/core.gyp:device_core',
3398 '../device/usb/usb.gyp:device_usb', 3398 '../device/usb/usb.gyp:device_usb',
3399 '../net/net.gyp:net_browser_services',
3399 ] 3400 ]
3400 }], 3401 }],
3401 ['OS=="android"', { 3402 ['OS=="android"', {
3402 'dependencies': [ 3403 'dependencies': [
3403 '../components/components.gyp:cdm_browser', 3404 '../components/components.gyp:cdm_browser',
3404 '../components/components.gyp:data_reduction_proxy_content', 3405 '../components/components.gyp:data_reduction_proxy_content',
3405 '../components/components.gyp:enhanced_bookmarks', 3406 '../components/components.gyp:enhanced_bookmarks',
3406 '../components/components.gyp:web_contents_delegate_android', 3407 '../components/components.gyp:web_contents_delegate_android',
3407 '../components/components_resources.gyp:components_resources', 3408 '../components/components_resources.gyp:components_resources',
3408 '../third_party/android_opengl/etc1/etc1.gyp:etc1', 3409 '../third_party/android_opengl/etc1/etc1.gyp:etc1',
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
3744 'variables': { 3745 'variables': {
3745 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3746 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3746 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3747 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3747 }, 3748 },
3748 'includes': [ '../build/protoc.gypi' ] 3749 'includes': [ '../build/protoc.gypi' ]
3749 }, 3750 },
3750 ], 3751 ],
3751 },], 3752 },],
3752 ], 3753 ],
3753 } 3754 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698