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

Side by Side Diff: cloud_print/service/BUILD.gn

Issue 1047463003: Add cloud_print_unittests to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remoting_targets
Patch Set: fix dependency on content Created 5 years, 8 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
« no previous file with comments | « cloud_print/BUILD.gn ('k') | no next file » | 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 2015 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 import("//tools/grit/grit_rule.gni")
6
7 source_set("cloud_print_service_lib") {
8 sources = [
9 "//cloud_print/common/win/cloud_print_utils.cc",
10 "//cloud_print/common/win/cloud_print_utils.h",
11 "service_constants.cc",
12 "service_constants.h",
13 "service_state.cc",
14 "service_state.h",
15 "service_switches.cc",
16 "service_switches.h",
17 "win/chrome_launcher.cc",
18 "win/chrome_launcher.h",
19 "win/local_security_policy.cc",
20 "win/local_security_policy.h",
21 "win/service_controller.cc",
22 "win/service_controller.h",
23 "win/service_listener.cc",
24 "win/service_listener.h",
25 "win/service_utils.cc",
26 "win/service_utils.h",
27 "win/setup_listener.cc",
28 "win/setup_listener.h",
29 ]
30
31 deps = [
32 ":service_resources",
33 "//base",
34 "//base:base_static",
35 "//base/third_party/dynamic_annotations",
36 "//content/public/common",
37 "//google_apis",
38 "//ipc",
39 "//net",
40 "//url",
41 ]
42 }
43
44 grit("service_resources") {
45 source = "win/service_resources.grd"
46 outputs = [
47 "resources.h",
48 "service_resources_en.rc",
49 ]
50 }
OLDNEW
« no previous file with comments | « cloud_print/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698