blob: 1c369d36f936d81f77fe96f9ea58efe2e3ff499a [file] [log] [blame]
ygorshenin39e36782014-08-29 13:09:511# Copyright 2014 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{
davidbenee92e382015-05-26 20:25:456 'conditions': [
7 ['chromeos==1', {
8 'targets': [{
9 'target_name': 'ownership',
10 'type': '<(component)',
eirikbf865e042014-11-12 09:09:1511 'dependencies': [
davidbenee92e382015-05-26 20:25:4512 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/components/components.gyp:keyed_service_core',
14 '<(DEPTH)/components/components.gyp:policy_component_common',
15 '<(DEPTH)/crypto/crypto.gyp:crypto',
16 ],
17 'defines': [
18 'OWNERSHIP_IMPLEMENTATION',
19 ],
20 'include_dirs': [
21 '<(SHARED_INTERMEDIATE_DIR)',
22 ],
23 'sources': [
24 'ownership/mock_owner_key_util.cc',
25 'ownership/mock_owner_key_util.h',
26 'ownership/owner_key_util.cc',
27 'ownership/owner_key_util.h',
28 'ownership/owner_key_util_impl.cc',
29 'ownership/owner_key_util_impl.h',
30 'ownership/owner_settings_service.cc',
31 'ownership/owner_settings_service.h',
32 ],
33 'conditions': [
34 ['configuration_policy==1', {
35 'dependencies': [
36 '<(DEPTH)/components/components.gyp:cloud_policy_proto',
37 '<(DEPTH)/components/components.gyp:policy',
38 ],
39 }],
40 ['use_nss_certs==1', {
41 'dependencies': [
svaldezd4fed182016-05-02 16:21:1142 '../build/linux/system.gyp:nss',
davidbenee92e382015-05-26 20:25:4543 ],
44 }],
eirikbf865e042014-11-12 09:09:1545 ],
46 }],
davidbenee92e382015-05-26 20:25:4547 }],
48 ],
ygorshenin39e36782014-08-29 13:09:5149}