blob: 0b95fe22930606b1209ba642c2d35b70a2eb4d70 [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{
6 'targets': [{
7 'target_name': 'ownership',
8 'type': '<(component)',
9 'dependencies': [
10 '<(DEPTH)/base/base.gyp:base',
Yuri Gorsheninc7bf410d2014-09-15 13:07:4911 '<(DEPTH)/components/components.gyp:keyed_service_core',
Yuri Gorsheninc7bf410d2014-09-15 13:07:4912 '<(DEPTH)/components/components.gyp:policy_component_common',
ygorshenin39e36782014-08-29 13:09:5113 '<(DEPTH)/crypto/crypto.gyp:crypto',
14 ],
15 'defines': [
16 'OWNERSHIP_IMPLEMENTATION',
17 ],
Yuri Gorsheninc7bf410d2014-09-15 13:07:4918 'include_dirs': [
19 '<(SHARED_INTERMEDIATE_DIR)',
20 ],
ygorshenin39e36782014-08-29 13:09:5121 'sources': [
ygorshenina3e9d8b2014-09-05 09:59:3622 'ownership/mock_owner_key_util.cc',
23 'ownership/mock_owner_key_util.h',
ygorshenin39e36782014-08-29 13:09:5124 'ownership/owner_key_util.cc',
25 'ownership/owner_key_util.h',
26 'ownership/owner_key_util_impl.cc',
27 'ownership/owner_key_util_impl.h',
Yuri Gorsheninc7bf410d2014-09-15 13:07:4928 'ownership/owner_settings_service.cc',
29 'ownership/owner_settings_service.h',
ygorshenin39e36782014-08-29 13:09:5130 ],
eirikbf865e042014-11-12 09:09:1531 'conditions': [
32 ['configuration_policy==1', {
33 'dependencies': [
34 '<(DEPTH)/components/components.gyp:cloud_policy_proto',
35 '<(DEPTH)/components/components.gyp:policy',
36 ],
37 }],
38 ],
ygorshenin39e36782014-08-29 13:09:5139 }],
40}