OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'policy_component', | |
9 'type': '<(component)', | |
10 'dependencies': [ | |
11 '../base/base.gyp:base', | |
12 'json_schema', | |
13 ], | |
14 'defines': [ | |
15 'POLICY_COMPONENT_IMPLEMENTATION', | |
16 ], | |
17 'include_dirs': [ | |
18 '..', | |
19 ], | |
20 # The target 'policy_component' always exists. For now it may be empty, | |
21 # 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.
| |
22 'conditions': [ | |
23 ['configuration_policy==1', { | |
24 'sources': [ | |
25 '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
| |
26 'policy/core/common/policy_schema.h', | |
27 ], | |
28 } ], | |
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.
| |
29 ], | |
30 }, | |
31 ], | |
32 } | |
OLD | NEW |