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

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: Flag. 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 3081 matching lines...) Expand 10 before | Expand all | Expand 10 after
3092 ], 3092 ],
3093 # CoreImage is iOS 5+, but iOS 4.3 is still supported. 3093 # CoreImage is iOS 5+, but iOS 4.3 is still supported.
3094 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']}, 3094 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']},
3095 }, 3095 },
3096 }], 3096 }],
3097 ['OS=="win" or OS=="mac"', { 3097 ['OS=="win" or OS=="mac"', {
3098 'sources': [ 3098 'sources': [
3099 '<@(chrome_browser_win_mac_sources)', 3099 '<@(chrome_browser_win_mac_sources)',
3100 ], 3100 ],
3101 }], 3101 }],
3102 ['OS!="android" and OS!="ios"', {
3103 'dependencies': [
3104 '../net/net.gyp:net_browser_services',
3105 ],
3106 }],
3102 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', { 3107 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', {
3103 'sources': [ 3108 'sources': [
3104 'browser/net/disk_cache_dir_policy_handler.cc', 3109 'browser/net/disk_cache_dir_policy_handler.cc',
3105 'browser/net/disk_cache_dir_policy_handler.h', 3110 'browser/net/disk_cache_dir_policy_handler.h',
3106 ], 3111 ],
3107 }], 3112 }],
3108 ['OS!="android" and OS!="ios" and configuration_policy==1', { 3113 ['OS!="android" and OS!="ios" and configuration_policy==1', {
3109 'sources': [ 3114 'sources': [
3110 'browser/download/download_dir_policy_handler.cc', 3115 'browser/download/download_dir_policy_handler.cc',
3111 'browser/download/download_dir_policy_handler.h', 3116 'browser/download/download_dir_policy_handler.h',
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
3704 'variables': { 3709 'variables': {
3705 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3710 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3706 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3711 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3707 }, 3712 },
3708 'includes': [ '../build/protoc.gypi' ] 3713 'includes': [ '../build/protoc.gypi' ]
3709 }, 3714 },
3710 ], 3715 ],
3711 },], 3716 },],
3712 ], 3717 ],
3713 } 3718 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698