Chromium Code Reviews| Index: components/policy.gypi |
| diff --git a/components/policy.gypi b/components/policy.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a9c0eec74f4520b38314d72d72e7df89faff953d |
| --- /dev/null |
| +++ b/components/policy.gypi |
| @@ -0,0 +1,32 @@ |
| +# Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'policy_component', |
| + 'type': '<(component)', |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
| + 'json_schema', |
| + ], |
| + 'defines': [ |
| + 'POLICY_COMPONENT_IMPLEMENTATION', |
| + ], |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + # The target 'policy_component' always exists. For now it may be empty, |
| + # but later it will include some stubs when configuration_policy==0. |
|
Mattias Nissler (ping if slow)
2013/08/13 12:32:09
This comment may bitrot. So remove it or, if you w
Joao da Silva
2013/08/13 12:50:18
Done.
|
| + 'conditions': [ |
| + ['configuration_policy==1', { |
| + 'sources': [ |
| + 'policy/core/common/policy_schema.cc', |
|
Jói
2013/08/13 12:26:43
Maybe list policy_export.h for completeness.
Mattias Nissler (ping if slow)
2013/08/13 12:32:09
What's the plan with this 'core' directory? Can yo
Joao da Silva
2013/08/13 12:50:18
Good catch, that was a lapse from my side. Done.
Joao da Silva
2013/08/13 12:50:18
http://dev.chromium.org/developers/design-document
Mattias Nissler (ping if slow)
2013/08/13 13:14:38
I see. Note that these references suggest you come
|
| + 'policy/core/common/policy_schema.h', |
| + ], |
| + } ], |
|
Mattias Nissler (ping if slow)
2013/08/13 12:32:09
nit }], seems to be more common in gyp files
Joao da Silva
2013/08/13 12:50:18
Done.
|
| + ], |
| + }, |
| + ], |
| +} |