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

Unified Diff: extensions/extensions.gyp

Issue 110463003: Create extensions_test_support build target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase extension_test_util Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/common/test_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/extensions.gyp
diff --git a/extensions/extensions.gyp b/extensions/extensions.gyp
index 0ca42f878d5b5ad12a0781445900238a796e4ae5..eedcd0dda58be43a645eb9d88327c1d0e5408953 100644
--- a/extensions/extensions.gyp
+++ b/extensions/extensions.gyp
@@ -15,6 +15,8 @@
# api resources compiled into the chrome resource bundle.
# http://crbug.com/162530
'../chrome/chrome_resources.gyp:chrome_resources',
+ # TODO(jamescook|derat): Pull strings into extensions module.
+ '../chrome/chrome_resources.gyp:chrome_strings',
'../chrome/common/extensions/api/api.gyp:api',
'../components/components.gyp:url_matcher',
'../content/content.gyp:content_common',
@@ -205,5 +207,29 @@
# Disable c4267 warnings until we fix size_t to int truncations.
'msvs_disabled_warnings': [ 4267, ],
},
+ {
+ 'target_name': 'extensions_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'extensions_browser',
+ 'extensions_common',
+ '../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'browser/test_management_policy.cc',
+ 'browser/test_management_policy.h',
+ 'common/extension_builder.cc',
+ 'common/extension_builder.h',
+ 'common/test_util.cc',
+ 'common/test_util.h',
+ 'common/value_builder.cc',
+ 'common/value_builder.h',
+ ],
+ # Disable c4267 warnings until we fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ },
]
}
« no previous file with comments | « extensions/common/test_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698