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

Side by Side Diff: extensions/extensions.gyp

Issue 559103003: Cleanup: Remove Dispatcher and UserScript classes from builds where extensions are disabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « chrome/test/base/chrome_render_view_test.cc ('k') | extensions/renderer/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 'msvs_disabled_warnings': [ 4267, ], 889 'msvs_disabled_warnings': [ 4267, ],
890 'conditions': [ 890 'conditions': [
891 # Temporary conditions for Android until it can stop building 891 # Temporary conditions for Android until it can stop building
892 # the extensions module altogether. These exemptions are taken 892 # the extensions module altogether. These exemptions are taken
893 # directly from chrome_renderer.gypi as sources are moved 893 # directly from chrome_renderer.gypi as sources are moved
894 # from //chrome/renderer to //extensions/renderer. 894 # from //chrome/renderer to //extensions/renderer.
895 ['OS == "android"', { 895 ['OS == "android"', {
896 'sources!': [ 896 'sources!': [
897 'renderer/api_definitions_natives.cc', 897 'renderer/api_definitions_natives.cc',
898 'renderer/context_menus_custom_bindings.cc', 898 'renderer/context_menus_custom_bindings.cc',
899 'renderer/dispatcher.cc',
900 'renderer/dispatcher.h',
899 'renderer/render_view_observer_natives.cc', 901 'renderer/render_view_observer_natives.cc',
900 'renderer/send_request_natives.cc', 902 'renderer/send_request_natives.cc',
903 'renderer/user_script_injector.cc',
904 'renderer/user_script_injector.h',
905 'renderer/user_script_set.cc',
906 'renderer/user_script_set.h',
907 'renderer/user_script_set_manager.cc',
908 'renderer/user_script_set_manager.h',
901 ], 909 ],
902 }], 910 }],
903 ] 911 ]
904 }, 912 },
905 { 913 {
906 # GN version: //extensions:test_support 914 # GN version: //extensions:test_support
907 'target_name': 'extensions_test_support', 915 'target_name': 'extensions_test_support',
908 'type': 'static_library', 916 'type': 'static_library',
909 'dependencies': [ 917 'dependencies': [
910 '../base/base.gyp:base', 918 '../base/base.gyp:base',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 'browser/api/cast_channel/logging.proto' 1159 'browser/api/cast_channel/logging.proto'
1152 ], 1160 ],
1153 'variables': { 1161 'variables': {
1154 'proto_in_dir': 'browser/api/cast_channel', 1162 'proto_in_dir': 'browser/api/cast_channel',
1155 'proto_out_dir': 'extensions/browser/api/cast_channel', 1163 'proto_out_dir': 'extensions/browser/api/cast_channel',
1156 }, 1164 },
1157 'includes': [ '../build/protoc.gypi' ] 1165 'includes': [ '../build/protoc.gypi' ]
1158 }, 1166 },
1159 ] 1167 ]
1160 } 1168 }
OLDNEW
« no previous file with comments | « chrome/test/base/chrome_render_view_test.cc ('k') | extensions/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698