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

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: Remove debug logging 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 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 ['exclude', '^browser/renderer_host/render_widget_host_view_aura.h'], 1137 ['exclude', '^browser/renderer_host/render_widget_host_view_aura.h'],
1138 ['exclude', '^browser/renderer_host/tap_suppression_controller_aura.cc'] , 1138 ['exclude', '^browser/renderer_host/tap_suppression_controller_aura.cc'] ,
1139 ], 1139 ],
1140 }], 1140 }],
1141 ['enable_plugins==1', { 1141 ['enable_plugins==1', {
1142 'dependencies': [ 1142 'dependencies': [
1143 '../ppapi/ppapi_internal.gyp:ppapi_ipc', 1143 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
1144 ], 1144 ],
1145 }, { # enable_plugins==0 1145 }, { # enable_plugins==0
1146 'sources!': [ 1146 'sources!': [
1147 'browser/pepper_flash_settings_helper_impl.cc',
1148 'browser/pepper_flash_settings_helper_impl.h',
1147 'browser/plugin_data_remover_impl.cc', 1149 'browser/plugin_data_remover_impl.cc',
1148 'browser/plugin_data_remover_impl.h', 1150 'browser/plugin_data_remover_impl.h',
1151 'browser/plugin_loader_posix.cc',
1152 'browser/plugin_loader_posix.h',
1153 'browser/plugin_service_impl.cc',
1154 'browser/plugin_service_impl.h',
1149 'browser/ppapi_plugin_process_host.cc', 1155 'browser/ppapi_plugin_process_host.cc',
1156 'public/browser/plugin_service.h',
1150 ], 1157 ],
1151 'sources/': [ 1158 'sources/': [
1152 ['exclude', '^browser/renderer_host/pepper/'], 1159 ['exclude', '^browser/renderer_host/pepper/'],
1153 ], 1160 ],
1154 }], 1161 }],
1155 ['java_bridge==1', { 1162 ['java_bridge==1', {
1156 'defines': [ 1163 'defines': [
1157 'ENABLE_JAVA_BRIDGE', 1164 'ENABLE_JAVA_BRIDGE',
1158 ], 1165 ],
1159 }, { 1166 }, {
(...skipping 15 matching lines...) Expand all
1175 # the USE_LIBGPS setting propagates to the "real" dependent target, 1182 # the USE_LIBGPS setting propagates to the "real" dependent target,
1176 # we use all_dependent_settings here. 1183 # we use all_dependent_settings here.
1177 'all_dependent_settings': { 1184 'all_dependent_settings': {
1178 'defines': [ 1185 'defines': [
1179 'USE_LIBGPS', 1186 'USE_LIBGPS',
1180 ], 1187 ],
1181 }, 1188 },
1182 }], 1189 }],
1183 ], 1190 ],
1184 } 1191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698