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

Side by Side Diff: cloud_print/BUILD.gn

Issue 2541123003: Resurrect the cloud printer driver. (Closed)
Patch Set: Remove cross-compiling option for the portmon dll. Created 4 years 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/BRANDING ('k') | cloud_print/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 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("//testing/test.gni")
6
7 group("cloud_print") {
8 if (is_win) {
9 public_deps = [
10 "//cloud_print/virtual_driver/win/install:virtual_driver_setup",
11 "//cloud_print/virtual_driver/win/port_monitor",
12 ]
13
14 # When compiling 32-bit, also reference the 64-bit driver for installing on
15 # 64-bit systems.
16 if (target_cpu == "x86" && current_cpu == "x86") {
17 public_deps += [ "//cloud_print/virtual_driver/win/port_monitor(//build/to olchain/win:x64)" ]
18 }
19 }
20 }
21
22 test("cloud_print_unittests") {
23 sources = [
24 "virtual_driver/win/port_monitor/port_monitor_unittest.cc",
25 ]
26
27 deps = [
28 "//base",
29 "//base/test:run_all_unittests",
30 "//cloud_print/virtual_driver/win/port_monitor:lib",
31 "//testing/gmock",
32 "//testing/gtest",
33 ]
34
35 libs = [ "secur32.lib" ]
36 }
OLDNEW
« no previous file with comments | « cloud_print/BRANDING ('k') | cloud_print/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698