OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 # Cross-platform ownership sources. | |
8 'ownership_shared_sources': [ | |
9 'ownership/owner_key_util.cc', | |
10 'ownership/owner_key_util.h', | |
11 ], | |
12 # Chrome OS ownership sources. | |
13 'ownership_chromeos_sources': [ | |
14 'ownership/owner_key_util_chromeos.cc', | |
15 'ownership/owner_key_util_chromeos.h', | |
16 ], | |
17 }, | |
18 'targets': [{ | |
19 'target_name': 'ownership', | |
20 'type': '<(component)', | |
21 'dependencies': [ | |
22 '<(DEPTH)/base/base.gyp:base', | |
23 '<(DEPTH)/crypto/crypto.gyp:crypto', | |
24 '<(DEPTH)/net/net.gyp:net', | |
wtc
2014/08/25 19:41:50
This dependency on <(DEPTH)/net/net.gyp:net doesn'
ygorshenin1
2014/08/26 14:53:35
Done.
| |
25 ], | |
26 'defines': [ | |
27 'OWNERSHIP_IMPLEMENTATION', | |
28 ], | |
29 'sources': [ '<@(ownership_shared_sources)' ], | |
30 'conditions': [ | |
31 ['chromeos == 1', { | |
32 'sources': [ '<@(ownership_chromeos_sources)' ], | |
33 }], | |
34 ], | |
35 }], | |
36 } | |
OLD | NEW |