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

Side by Side Diff: extensions/extensions.gyp

Issue 464613002: Move SafeManifestParser to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'common/extension_messages.cc', 77 'common/extension_messages.cc',
78 'common/extension_messages.h', 78 'common/extension_messages.h',
79 'common/extension_paths.cc', 79 'common/extension_paths.cc',
80 'common/extension_paths.h', 80 'common/extension_paths.h',
81 'common/extension_resource.cc', 81 'common/extension_resource.cc',
82 'common/extension_resource.h', 82 'common/extension_resource.h',
83 'common/extension_set.cc', 83 'common/extension_set.cc',
84 'common/extension_set.h', 84 'common/extension_set.h',
85 'common/extension_urls.cc', 85 'common/extension_urls.cc',
86 'common/extension_urls.h', 86 'common/extension_urls.h',
87 'common/extension_utility_messages.h',
87 'common/extensions_client.cc', 88 'common/extensions_client.cc',
88 'common/extensions_client.h', 89 'common/extensions_client.h',
89 'common/feature_switch.cc', 90 'common/feature_switch.cc',
90 'common/feature_switch.h', 91 'common/feature_switch.h',
91 'common/features/api_feature.cc', 92 'common/features/api_feature.cc',
92 'common/features/api_feature.h', 93 'common/features/api_feature.h',
93 'common/features/base_feature_provider.cc', 94 'common/features/base_feature_provider.cc',
94 'common/features/base_feature_provider.h', 95 'common/features/base_feature_provider.h',
95 'common/features/complex_feature.cc', 96 'common/features/complex_feature.cc',
96 'common/features/complex_feature.h', 97 'common/features/complex_feature.h',
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 'browser/renderer_startup_helper.cc', 492 'browser/renderer_startup_helper.cc',
492 'browser/renderer_startup_helper.h', 493 'browser/renderer_startup_helper.h',
493 'browser/runtime_data.cc', 494 'browser/runtime_data.cc',
494 'browser/runtime_data.h', 495 'browser/runtime_data.h',
495 'browser/state_store.cc', 496 'browser/state_store.cc',
496 'browser/state_store.h', 497 'browser/state_store.h',
497 'browser/uninstall_reason.h', 498 'browser/uninstall_reason.h',
498 'browser/update_observer.h', 499 'browser/update_observer.h',
499 'browser/updater/manifest_fetch_data.cc', 500 'browser/updater/manifest_fetch_data.cc',
500 'browser/updater/manifest_fetch_data.h', 501 'browser/updater/manifest_fetch_data.h',
502 'browser/updater/safe_manifest_parser.cc',
503 'browser/updater/safe_manifest_parser.h',
501 'browser/value_store/leveldb_value_store.cc', 504 'browser/value_store/leveldb_value_store.cc',
502 'browser/value_store/leveldb_value_store.h', 505 'browser/value_store/leveldb_value_store.h',
503 'browser/value_store/testing_value_store.cc', 506 'browser/value_store/testing_value_store.cc',
504 'browser/value_store/testing_value_store.h', 507 'browser/value_store/testing_value_store.h',
505 'browser/value_store/value_store.cc', 508 'browser/value_store/value_store.cc',
506 'browser/value_store/value_store.h', 509 'browser/value_store/value_store.h',
507 'browser/value_store/value_store_change.cc', 510 'browser/value_store/value_store_change.cc',
508 'browser/value_store/value_store_change.h', 511 'browser/value_store/value_store_change.h',
509 'browser/value_store/value_store_frontend.cc', 512 'browser/value_store/value_store_frontend.cc',
510 'browser/value_store/value_store_frontend.h', 513 'browser/value_store/value_store_frontend.h',
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 'browser/api/cast_channel/logging.proto' 920 'browser/api/cast_channel/logging.proto'
918 ], 921 ],
919 'variables': { 922 'variables': {
920 'proto_in_dir': 'browser/api/cast_channel', 923 'proto_in_dir': 'browser/api/cast_channel',
921 'proto_out_dir': 'extensions/browser/api/cast_channel', 924 'proto_out_dir': 'extensions/browser/api/cast_channel',
922 }, 925 },
923 'includes': [ '../build/protoc.gypi' ] 926 'includes': [ '../build/protoc.gypi' ]
924 }, 927 },
925 ] 928 ]
926 } 929 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698