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

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: Added public static OwnerSettingsService::MakeOwnerKeyUtil() method. 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 'ownership/owner_key_util_impl.cc',
12 'ownership/owner_key_util_impl.h',
13 ],
14 },
15 'targets': [{
16 'target_name': 'ownership',
17 'type': '<(component)',
18 'dependencies': [
19 '<(DEPTH)/base/base.gyp:base',
20 '<(DEPTH)/crypto/crypto.gyp:crypto',
21 ],
22 'defines': [
23 'OWNERSHIP_IMPLEMENTATION',
24 ],
25 'sources': [ '<@(ownership_shared_sources)' ],
26 }],
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698