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

Side by Side Diff: content/content_browser.gypi

Issue 11615002: Exclude PluginService for builds with enable_plugins==0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Excluded more files. Avoid sending ViewHostMsg_GetPlugins Created 8 years 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'conditions': [ 7 'conditions': [
8 ['chromeos==1', { 8 ['chromeos==1', {
9 'use_libgps%': 1, 9 'use_libgps%': 1,
10 }, { # chromeos==0 10 }, { # chromeos==0
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 ['exclude', '^browser/renderer_host/render_widget_host_view_aura.h'], 1134 ['exclude', '^browser/renderer_host/render_widget_host_view_aura.h'],
1135 ['exclude', '^browser/renderer_host/tap_suppression_controller_aura.cc'] , 1135 ['exclude', '^browser/renderer_host/tap_suppression_controller_aura.cc'] ,
1136 ], 1136 ],
1137 }], 1137 }],
1138 ['enable_plugins==1', { 1138 ['enable_plugins==1', {
1139 'dependencies': [ 1139 'dependencies': [
1140 '../ppapi/ppapi_internal.gyp:ppapi_ipc', 1140 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
1141 ], 1141 ],
1142 }, { # enable_plugins==0 1142 }, { # enable_plugins==0
1143 'sources!': [ 1143 'sources!': [
1144 'browser/pepper_flash_settings_helper_impl.cc',
1145 'browser/pepper_flash_settings_helper_impl.h',
1144 'browser/plugin_data_remover_impl.cc', 1146 'browser/plugin_data_remover_impl.cc',
1145 'browser/plugin_data_remover_impl.h', 1147 'browser/plugin_data_remover_impl.h',
1148 'browser/plugin_loader_posix.cc',
1149 'browser/plugin_loader_posix.h',
1150 'browser/plugin_process_host.cc',
1151 'browser/plugin_process_host.h',
1152 'browser/plugin_service_impl.cc',
1153 'browser/plugin_service_impl.h',
1146 'browser/ppapi_plugin_process_host.cc', 1154 'browser/ppapi_plugin_process_host.cc',
1155 'public/browser/plugin_service.h',
1147 ], 1156 ],
1148 'sources/': [ 1157 'sources/': [
1149 ['exclude', '^browser/renderer_host/pepper/'], 1158 ['exclude', '^browser/renderer_host/pepper/'],
1150 ], 1159 ],
1151 }], 1160 }],
1152 ['java_bridge==1', { 1161 ['java_bridge==1', {
1153 'defines': [ 1162 'defines': [
1154 'ENABLE_JAVA_BRIDGE', 1163 'ENABLE_JAVA_BRIDGE',
1155 ], 1164 ],
1156 }, { 1165 }, {
(...skipping 15 matching lines...) Expand all
1172 # the USE_LIBGPS setting propagates to the "real" dependent target, 1181 # the USE_LIBGPS setting propagates to the "real" dependent target,
1173 # we use all_dependent_settings here. 1182 # we use all_dependent_settings here.
1174 'all_dependent_settings': { 1183 'all_dependent_settings': {
1175 'defines': [ 1184 'defines': [
1176 'USE_LIBGPS', 1185 'USE_LIBGPS',
1177 ], 1186 ],
1178 }, 1187 },
1179 }], 1188 }],
1180 ], 1189 ],
1181 } 1190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698