Chromium Code Reviews| 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', |
| + ], |
| + }, |
| ], |
| } |