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

Unified Diff: components/policy.gypi

Issue 92153002: Move ConfigurationPolicyProvider, etc. to components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
Index: components/policy.gypi
diff --git a/components/policy.gypi b/components/policy.gypi
index 4580dea617873439d4aa7c4318557f4810383054..7e179577dcc8506e1a114aaccbe2c77e8772834f 100644
--- a/components/policy.gypi
+++ b/components/policy.gypi
@@ -23,6 +23,8 @@
'sources': [
'policy/core/common/policy_bundle.cc',
'policy/core/common/policy_bundle.h',
Joao da Silva 2013/11/28 07:59:36 policy_bundle.* is out of order
dconnelly 2013/11/29 10:52:26 Well, shit.
+ 'policy/core/common/configuration_policy_provider.cc',
+ 'policy/core/common/configuration_policy_provider.h',
'policy/core/common/external_data_fetcher.cc',
'policy/core/common/external_data_fetcher.h',
'policy/core/common/external_data_manager.h',
@@ -63,5 +65,24 @@
}],
],
},
+ {
+ 'target_name': 'policy_test_support',
Joao da Silva 2013/11/28 07:59:36 This target should exist only when configuration_p
dconnelly 2013/11/29 10:52:26 Done.
+ 'type': 'static_library',
+ 'defines!': ['POLICY_COMPONENT_IMPLEMENTATION'],
Joao da Silva 2013/11/28 07:59:36 Remove the "!". Also, for consistency with the tar
dconnelly 2013/11/29 10:52:26 Done.
+ 'dependencies': [
+ 'policy_component',
+ '../testing/gmock.gyp:gmock',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'policy/core/common/configuration_policy_provider_test.cc',
+ 'policy/core/common/configuration_policy_provider_test.h',
+ 'policy/core/common/mock_configuration_policy_provider.cc',
+ 'policy/core/common/mock_configuration_policy_provider.h',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698