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

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: Address review comments. Created 5 years, 10 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 3080 matching lines...) Expand 10 before | Expand all | Expand 10 after
3091 ], 3091 ],
3092 # CoreImage is iOS 5+, but iOS 4.3 is still supported. 3092 # CoreImage is iOS 5+, but iOS 4.3 is still supported.
3093 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']}, 3093 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']},
3094 }, 3094 },
3095 }], 3095 }],
3096 ['OS=="win" or OS=="mac"', { 3096 ['OS=="win" or OS=="mac"', {
3097 'sources': [ 3097 'sources': [
3098 '<@(chrome_browser_win_mac_sources)', 3098 '<@(chrome_browser_win_mac_sources)',
3099 ], 3099 ],
3100 }], 3100 }],
3101 ['OS!="android" and OS!="ios"', {
3102 'dependencies': [
3103 '../net/net.gyp:net_browser_services',
Lei Zhang 2015/03/02 20:08:08 Just add this to the list on line 3373?
Anand Mistry (off Chromium) 2015/03/03 02:54:43 Done.
3104 ],
3105 }],
3101 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', { 3106 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', {
3102 'sources': [ 3107 'sources': [
3103 'browser/net/disk_cache_dir_policy_handler.cc', 3108 'browser/net/disk_cache_dir_policy_handler.cc',
3104 'browser/net/disk_cache_dir_policy_handler.h', 3109 'browser/net/disk_cache_dir_policy_handler.h',
3105 ], 3110 ],
3106 }], 3111 }],
3107 ['OS!="android" and OS!="ios" and configuration_policy==1', { 3112 ['OS!="android" and OS!="ios" and configuration_policy==1', {
3108 'sources': [ 3113 'sources': [
3109 'browser/download/download_dir_policy_handler.cc', 3114 'browser/download/download_dir_policy_handler.cc',
3110 'browser/download/download_dir_policy_handler.h', 3115 'browser/download/download_dir_policy_handler.h',
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
3703 'variables': { 3708 'variables': {
3704 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3709 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3705 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3710 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3706 }, 3711 },
3707 'includes': [ '../build/protoc.gypi' ] 3712 'includes': [ '../build/protoc.gypi' ]
3708 }, 3713 },
3709 ], 3714 ],
3710 },], 3715 },],
3711 ], 3716 ],
3712 } 3717 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698