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

Side by Side Diff: extensions/extensions.gyp

Issue 698623002: Split WarningService from ExtensionSystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 'browser/value_store/value_store_frontend.cc', 776 'browser/value_store/value_store_frontend.cc',
777 'browser/value_store/value_store_frontend.h', 777 'browser/value_store/value_store_frontend.h',
778 'browser/value_store/value_store_util.cc', 778 'browser/value_store/value_store_util.cc',
779 'browser/value_store/value_store_util.h', 779 'browser/value_store/value_store_util.h',
780 'browser/verified_contents.cc', 780 'browser/verified_contents.cc',
781 'browser/verified_contents.h', 781 'browser/verified_contents.h',
782 'browser/view_type_utils.cc', 782 'browser/view_type_utils.cc',
783 'browser/view_type_utils.h', 783 'browser/view_type_utils.h',
784 'browser/warning_service.cc', 784 'browser/warning_service.cc',
785 'browser/warning_service.h', 785 'browser/warning_service.h',
786 'browser/warning_service_factory.cc',
787 'browser/warning_service_factory.h',
786 'browser/warning_set.cc', 788 'browser/warning_set.cc',
787 'browser/warning_set.h', 789 'browser/warning_set.h',
788 ], 790 ],
789 'conditions': [ 791 'conditions': [
790 ['enable_extensions==0', { 792 ['enable_extensions==0', {
791 # Exclude all API implementations and the ExtensionsApiClient 793 # Exclude all API implementations and the ExtensionsApiClient
792 # interface. Moving an API from src/chrome to src/extensions implies 794 # interface. Moving an API from src/chrome to src/extensions implies
793 # it can be cleanly disabled with enable_extensions==0. 795 # it can be cleanly disabled with enable_extensions==0.
794 # TODO: Eventually the entire extensions module should not be built 796 # TODO: Eventually the entire extensions module should not be built
795 # when enable_extensions==0. 797 # when enable_extensions==0.
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 'conditions': [ 1243 'conditions': [
1242 ['OS=="win" and win_use_allocator_shim==1', { 1244 ['OS=="win" and win_use_allocator_shim==1', {
1243 'dependencies': [ 1245 'dependencies': [
1244 '../base/allocator/allocator.gyp:allocator', 1246 '../base/allocator/allocator.gyp:allocator',
1245 ], 1247 ],
1246 }], 1248 }],
1247 ], 1249 ],
1248 }, 1250 },
1249 ] 1251 ]
1250 } 1252 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698