Remove EWK_BRINGUP in gpu_info_collector_efl.cc
[platform/framework/web/chromium-efl.git] / cloud_print / BUILD.gn
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       if (is_clang) {
18         win64 = "//build/toolchain/win:win_clang_x64"
19       } else {
20         win64 = "//build/toolchain/win:x64"
21       }
22       public_deps += [ "//cloud_print/virtual_driver/win/port_monitor($win64)" ]
23     }
24   }
25 }
26
27 test("cloud_print_unittests") {
28   sources = [
29     "virtual_driver/win/port_monitor/port_monitor_unittest.cc",
30   ]
31
32   deps = [
33     "//base",
34     "//base/test:run_all_unittests",
35     "//cloud_print/virtual_driver/win/port_monitor:lib",
36     "//testing/gmock",
37     "//testing/gtest",
38   ]
39
40   libs = [ "secur32.lib" ]
41 }