| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'target_name': 'ownership', | 7 'target_name': 'ownership', |
| 8 'type': '<(component)', | 8 'type': '<(component)', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '<(DEPTH)/base/base.gyp:base', | 10 '<(DEPTH)/base/base.gyp:base', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'ownership/owner_settings_service.cc', | 28 'ownership/owner_settings_service.cc', |
| 29 'ownership/owner_settings_service.h', | 29 'ownership/owner_settings_service.h', |
| 30 ], | 30 ], |
| 31 'conditions': [ | 31 'conditions': [ |
| 32 ['configuration_policy==1', { | 32 ['configuration_policy==1', { |
| 33 'dependencies': [ | 33 'dependencies': [ |
| 34 '<(DEPTH)/components/components.gyp:cloud_policy_proto', | 34 '<(DEPTH)/components/components.gyp:cloud_policy_proto', |
| 35 '<(DEPTH)/components/components.gyp:policy', | 35 '<(DEPTH)/components/components.gyp:policy', |
| 36 ], | 36 ], |
| 37 }], | 37 }], |
| 38 ['use_nss_certs==1', { |
| 39 'dependencies': [ |
| 40 '../build/linux/system.gyp:ssl', |
| 41 ], |
| 42 }], |
| 38 ], | 43 ], |
| 39 }], | 44 }], |
| 40 } | 45 } |
| OLD | NEW |