OLD | NEW |
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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 'common/file_util_unittest.cc', | 486 'common/file_util_unittest.cc', |
487 'common/id_util_unittest.cc', | 487 'common/id_util_unittest.cc', |
488 'common/manifest_handler_unittest.cc', | 488 'common/manifest_handler_unittest.cc', |
489 'common/one_shot_event_unittest.cc', | 489 'common/one_shot_event_unittest.cc', |
490 'common/permissions/api_permission_set_unittest.cc', | 490 'common/permissions/api_permission_set_unittest.cc', |
491 'common/permissions/manifest_permission_set_unittest.cc', | 491 'common/permissions/manifest_permission_set_unittest.cc', |
492 'common/url_pattern_set_unittest.cc', | 492 'common/url_pattern_set_unittest.cc', |
493 'common/url_pattern_unittest.cc', | 493 'common/url_pattern_unittest.cc', |
494 'common/user_script_unittest.cc', | 494 'common/user_script_unittest.cc', |
495 'test/extensions_unittests_main.cc', | 495 'test/extensions_unittests_main.cc', |
| 496 'test/test_extensions_client.cc', |
| 497 'test/test_extensions_client.h', |
| 498 'test/test_permission_message_provider.cc', |
| 499 'test/test_permission_message_provider.h', |
| 500 'test/test_permissions_provider.cc', |
| 501 'test/test_permissions_provider.h', |
496 ], | 502 ], |
497 }, | 503 }, |
498 ] | 504 ] |
499 } | 505 } |
OLD | NEW |