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

Side by Side Diff: extensions/extensions.gyp

Issue 503033002: Move ExtensionWarningService and ExtensionsWarningSet to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@3_web_view_internal
Patch Set: rebase 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 | « extensions/common/extensions_client.h ('k') | extensions/extensions_strings.grd » ('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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 'browser/value_store/value_store_change.cc', 547 'browser/value_store/value_store_change.cc',
548 'browser/value_store/value_store_change.h', 548 'browser/value_store/value_store_change.h',
549 'browser/value_store/value_store_frontend.cc', 549 'browser/value_store/value_store_frontend.cc',
550 'browser/value_store/value_store_frontend.h', 550 'browser/value_store/value_store_frontend.h',
551 'browser/value_store/value_store_util.cc', 551 'browser/value_store/value_store_util.cc',
552 'browser/value_store/value_store_util.h', 552 'browser/value_store/value_store_util.h',
553 'browser/verified_contents.cc', 553 'browser/verified_contents.cc',
554 'browser/verified_contents.h', 554 'browser/verified_contents.h',
555 'browser/view_type_utils.cc', 555 'browser/view_type_utils.cc',
556 'browser/view_type_utils.h', 556 'browser/view_type_utils.h',
557 'browser/warning_service.cc',
558 'browser/warning_service.h',
559 'browser/warning_set.cc',
560 'browser/warning_set.h',
557 ], 561 ],
558 'conditions': [ 562 'conditions': [
559 ['enable_extensions==0', { 563 ['enable_extensions==0', {
560 # Exclude all API implementations and the ExtensionsApiClient 564 # Exclude all API implementations and the ExtensionsApiClient
561 # interface. Moving an API from src/chrome to src/extensions implies 565 # interface. Moving an API from src/chrome to src/extensions implies
562 # it can be cleanly disabled with enable_extensions==0. 566 # it can be cleanly disabled with enable_extensions==0.
563 # TODO: Eventually the entire extensions module should not be built 567 # TODO: Eventually the entire extensions module should not be built
564 # when enable_extensions==0. 568 # when enable_extensions==0.
565 'sources/': [ 569 'sources/': [
566 ['exclude', '^browser/'], 570 ['exclude', '^browser/'],
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 'browser/process_map_unittest.cc', 928 'browser/process_map_unittest.cc',
925 'browser/quota_service_unittest.cc', 929 'browser/quota_service_unittest.cc',
926 'browser/runtime_data_unittest.cc', 930 'browser/runtime_data_unittest.cc',
927 'browser/value_store/leveldb_value_store_unittest.cc', 931 'browser/value_store/leveldb_value_store_unittest.cc',
928 'browser/value_store/testing_value_store_unittest.cc', 932 'browser/value_store/testing_value_store_unittest.cc',
929 'browser/value_store/value_store_change_unittest.cc', 933 'browser/value_store/value_store_change_unittest.cc',
930 'browser/value_store/value_store_frontend_unittest.cc', 934 'browser/value_store/value_store_frontend_unittest.cc',
931 'browser/value_store/value_store_unittest.cc', 935 'browser/value_store/value_store_unittest.cc',
932 'browser/value_store/value_store_unittest.h', 936 'browser/value_store/value_store_unittest.h',
933 'browser/verified_contents_unittest.cc', 937 'browser/verified_contents_unittest.cc',
938 'browser/warning_service_unittest.cc',
934 'common/api/sockets/sockets_manifest_permission_unittest.cc', 939 'common/api/sockets/sockets_manifest_permission_unittest.cc',
935 'common/csp_validator_unittest.cc', 940 'common/csp_validator_unittest.cc',
936 'common/event_filter_unittest.cc', 941 'common/event_filter_unittest.cc',
937 'common/extension_resource_unittest.cc', 942 'common/extension_resource_unittest.cc',
938 'common/extension_set_unittest.cc', 943 'common/extension_set_unittest.cc',
939 'common/manifest_handler_unittest.cc', 944 'common/manifest_handler_unittest.cc',
940 'common/message_bundle_unittest.cc', 945 'common/message_bundle_unittest.cc',
941 'common/one_shot_event_unittest.cc', 946 'common/one_shot_event_unittest.cc',
942 'common/permissions/manifest_permission_set_unittest.cc', 947 'common/permissions/manifest_permission_set_unittest.cc',
943 'common/url_pattern_set_unittest.cc', 948 'common/url_pattern_set_unittest.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 'browser/api/cast_channel/logging.proto' 986 'browser/api/cast_channel/logging.proto'
982 ], 987 ],
983 'variables': { 988 'variables': {
984 'proto_in_dir': 'browser/api/cast_channel', 989 'proto_in_dir': 'browser/api/cast_channel',
985 'proto_out_dir': 'extensions/browser/api/cast_channel', 990 'proto_out_dir': 'extensions/browser/api/cast_channel',
986 }, 991 },
987 'includes': [ '../build/protoc.gypi' ] 992 'includes': [ '../build/protoc.gypi' ]
988 }, 993 },
989 ] 994 ]
990 } 995 }
OLDNEW
« no previous file with comments | « extensions/common/extensions_client.h ('k') | extensions/extensions_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698