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

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: Rebase. Created 6 years, 4 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 component("ownership") {
6 sources = [
7 "owner_key_util.cc",
8 "owner_key_util.h",
9 ]
10
11 if (is_chromeos) {
12 sources += [
13 "owner_key_util_chromeos.cc",
14 "owner_key_util_chromeos.h",
15 ]
16 }
17
18 defines = [
19 "OWNERSHIP_IMPLEMENTATION"
20 ]
21
22 deps = [
23 "//base",
24 "//crypto",
25 "//net",
wtc 2014/08/25 19:41:50 The dependency on "//net" doesn't seem necessary.
ygorshenin1 2014/08/26 14:53:35 Done.
26 ]
27 }
28
29 source_set("unit_tests") {
30 sources = []
31 if (is_chromeos) {
32 sources += ["owner_key_util_chromeos_unittest.cc" ]
33 }
34
35 deps = [
36 ":ownership",
37 "//testing/gtest",
38 ]
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698