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

Side by Side Diff: extensions/extensions.gyp

Issue 278593005: Extension content verification: new class for parsing data from store (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 'browser/value_store/testing_value_store.cc', 395 'browser/value_store/testing_value_store.cc',
396 'browser/value_store/testing_value_store.h', 396 'browser/value_store/testing_value_store.h',
397 'browser/value_store/value_store.cc', 397 'browser/value_store/value_store.cc',
398 'browser/value_store/value_store.h', 398 'browser/value_store/value_store.h',
399 'browser/value_store/value_store_change.cc', 399 'browser/value_store/value_store_change.cc',
400 'browser/value_store/value_store_change.h', 400 'browser/value_store/value_store_change.h',
401 'browser/value_store/value_store_frontend.cc', 401 'browser/value_store/value_store_frontend.cc',
402 'browser/value_store/value_store_frontend.h', 402 'browser/value_store/value_store_frontend.h',
403 'browser/value_store/value_store_util.cc', 403 'browser/value_store/value_store_util.cc',
404 'browser/value_store/value_store_util.h', 404 'browser/value_store/value_store_util.h',
405 'browser/verified_contents.cc',
406 'browser/verified_contents.h',
405 'browser/view_type_utils.cc', 407 'browser/view_type_utils.cc',
406 'browser/view_type_utils.h', 408 'browser/view_type_utils.h',
407 ], 409 ],
408 'conditions': [ 410 'conditions': [
409 ['enable_extensions==0', { 411 ['enable_extensions==0', {
410 # Exclude all API implementations and the ExtensionsApiClient 412 # Exclude all API implementations and the ExtensionsApiClient
411 # interface. Moving an API from src/chrome to src/extensions implies 413 # interface. Moving an API from src/chrome to src/extensions implies
412 # it can be cleanly disabled with enable_extensions==0. 414 # it can be cleanly disabled with enable_extensions==0.
413 # TODO: Eventually the entire extensions module should not be built 415 # TODO: Eventually the entire extensions module should not be built
414 # when enable_extensions==0. 416 # when enable_extensions==0.
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 'test/test_extensions_client.cc', 618 'test/test_extensions_client.cc',
617 'test/test_extensions_client.h', 619 'test/test_extensions_client.h',
618 'test/test_permission_message_provider.cc', 620 'test/test_permission_message_provider.cc',
619 'test/test_permission_message_provider.h', 621 'test/test_permission_message_provider.h',
620 'test/test_permissions_provider.cc', 622 'test/test_permissions_provider.cc',
621 'test/test_permissions_provider.h', 623 'test/test_permissions_provider.h',
622 ], 624 ],
623 }, 625 },
624 ] 626 ]
625 } 627 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698