Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: components/ownership.gypi

Issue 494093002: OwnerKeyUtil is moved to components/ownership. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698