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

Side by Side Diff: components/ownership/BUILD.gn

Issue 494093002: OwnerKeyUtil is moved to components/ownership. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed GYP file. 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
« no previous file with comments | « components/ownership.gypi ('k') | components/ownership/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 component("ownership") {
6 sources = [
7 "owner_key_util.cc",
8 "owner_key_util.h",
9 "owner_key_util_impl.cc",
10 "owner_key_util_impl.h",
11 ]
12
13 defines = [
14 "OWNERSHIP_IMPLEMENTATION"
15 ]
16
17 deps = [
18 "//base",
19 "//crypto",
20 ]
21 }
22
23 component("test_support") {
24 sources = [
25 "mock_owner_key_util.cc",
26 "mock_owner_key_util.h",
27 ]
28
29 deps = [
30 ":ownership",
31 "//base",
32 "//crypto",
33 ]
34 }
35
36 source_set("unit_tests") {
37 sources = ["owner_key_util_unittest.cc"]
38
39 deps = [
40 ":ownership",
41 "//testing/gtest",
42 ]
43 }
OLDNEW
« no previous file with comments | « components/ownership.gypi ('k') | components/ownership/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698