| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'policy_component', | 8 'target_name': 'policy_component', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 'json_schema', | 12 'json_schema', |
| 13 'component_strings.gyp:component_strings', |
| 13 ], | 14 ], |
| 14 'defines': [ | 15 'defines': [ |
| 15 'POLICY_COMPONENT_IMPLEMENTATION', | 16 'POLICY_COMPONENT_IMPLEMENTATION', |
| 16 ], | 17 ], |
| 17 'include_dirs': [ | 18 'include_dirs': [ |
| 18 '..', | 19 '..', |
| 19 ], | 20 ], |
| 20 'conditions': [ | 21 'conditions': [ |
| 21 ['configuration_policy==1', { | 22 ['configuration_policy==1', { |
| 22 'sources': [ | 23 'sources': [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'policy/core/common/policy_map.cc', | 56 'policy/core/common/policy_map.cc', |
| 56 'policy/core/common/policy_map.h', | 57 'policy/core/common/policy_map.h', |
| 57 'policy/core/common/policy_namespace.cc', | 58 'policy/core/common/policy_namespace.cc', |
| 58 'policy/core/common/policy_namespace.h', | 59 'policy/core/common/policy_namespace.h', |
| 59 ], | 60 ], |
| 60 }], | 61 }], |
| 61 ], | 62 ], |
| 62 }, | 63 }, |
| 63 ], | 64 ], |
| 64 } | 65 } |
| OLD | NEW |