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

Side by Side Diff: extensions/extensions.gyp

Issue 234563003: extensions: Introduce a fake ExtensionsClient implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: initialize on testsuite Created 6 years, 8 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 {
11 'target_name': 'extensions_common', 11 'target_name': 'extensions_common',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 'common/api/api.gyp:extensions_api', 14 'common/api/api.gyp:extensions_api',
15 # TODO(benwells): figure out what to do with the api target and 15 # TODO(benwells): figure out what to do with the api target and
16 # api resources compiled into the chrome resource bundle. 16 # api resources compiled into the chrome resource bundle.
17 # http://crbug.com/162530 17 # http://crbug.com/162530
18 '../chrome/chrome_resources.gyp:chrome_resources', 18 '../chrome/chrome_resources.gyp:chrome_resources',
19 # TODO(jamescook|derat): Pull strings into extensions module. 19 # TODO(jamescook|derat): Pull strings into extensions module.
20 '../chrome/chrome_resources.gyp:chrome_strings', 20 '../chrome/chrome_resources.gyp:chrome_strings',
21 # Need default icons in theme_resources.grd 21 # Need default icons in theme_resources.grd
22 '../chrome/chrome_resources.gyp:theme_resources', 22 '../chrome/chrome_resources.gyp:theme_resources',
23 23
24 # TODO(tfarina): This dep here is for extensions/common/constants.* 24 # TODO(tfarina): This dep here is for extensions/common/constants.*
25 # We should find a way to compile this module within extensions_common. 25 # We should find a way to compile this module within extensions_common.
26 '../chrome/common_constants.gyp:common_constants', 26 '../chrome/common_constants.gyp:common_constants',
27 '../components/components.gyp:url_matcher', 27 '../components/components.gyp:url_matcher',
28 '../content/content.gyp:content_common', 28 '../content/content.gyp:content_common',
29 '../crypto/crypto.gyp:crypto', 29 '../crypto/crypto.gyp:crypto',
30 '../ipc/ipc.gyp:ipc', 30 '../ipc/ipc.gyp:ipc',
31 '../net/net.gyp:net', 31 '../net/net.gyp:net',
32 '../third_party/re2/re2.gyp:re2', 32 '../third_party/re2/re2.gyp:re2',
33 '../ui/base/ui_base.gyp:ui_base', 33 '../ui/base/ui_base.gyp:ui_base',
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 'common/file_util_unittest.cc', 472 'common/file_util_unittest.cc',
473 'common/id_util_unittest.cc', 473 'common/id_util_unittest.cc',
474 'common/manifest_handler_unittest.cc', 474 'common/manifest_handler_unittest.cc',
475 'common/one_shot_event_unittest.cc', 475 'common/one_shot_event_unittest.cc',
476 'common/permissions/api_permission_set_unittest.cc', 476 'common/permissions/api_permission_set_unittest.cc',
477 'common/permissions/manifest_permission_set_unittest.cc', 477 'common/permissions/manifest_permission_set_unittest.cc',
478 'common/url_pattern_set_unittest.cc', 478 'common/url_pattern_set_unittest.cc',
479 'common/url_pattern_unittest.cc', 479 'common/url_pattern_unittest.cc',
480 'common/user_script_unittest.cc', 480 'common/user_script_unittest.cc',
481 'test/extensions_unittests_main.cc', 481 'test/extensions_unittests_main.cc',
482 'test/test_extensions_client.cc',
483 'test/test_extensions_client.h',
484 'test/test_permission_message_provider.cc',
485 'test/test_permission_message_provider.h',
486 'test/test_permissions_provider.cc',
487 'test/test_permissions_provider.h',
482 ], 488 ],
483 }, 489 },
484 ] 490 ]
485 } 491 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698