OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 # GN version: //cloud_print | |
11 'target_name': 'cloud_print', | 10 'target_name': 'cloud_print', |
12 'type': 'none', | 11 'type': 'none', |
13 'dependencies': [ | 12 'dependencies': [ |
14 'gcp20/prototype/gcp20_device.gyp:*', | 13 'gcp20/prototype/gcp20_device.gyp:*', |
15 'service/service.gyp:*', | 14 'service/service.gyp:*', |
16 ], | 15 ], |
17 'conditions': [ | 16 'conditions': [ |
18 ['OS=="win"', { | 17 ['OS=="win"', { |
19 'dependencies': [ | 18 'dependencies': [ |
20 'service/win/service.gyp:*', | 19 'service/win/service.gyp:*', |
21 'virtual_driver/win/install/virtual_driver_install.gyp:*', | 20 'virtual_driver/win/install/virtual_driver_install.gyp:*', |
22 'virtual_driver/win/virtual_driver.gyp:*', | 21 'virtual_driver/win/virtual_driver.gyp:*', |
23 ], | 22 ], |
24 }], | 23 }], |
25 ['OS=="win" and target_arch=="ia32"', { | 24 ['OS=="win" and target_arch=="ia32"', { |
26 'dependencies': [ | 25 'dependencies': [ |
27 'virtual_driver/win/virtual_driver64.gyp:*', | 26 'virtual_driver/win/virtual_driver64.gyp:*', |
28 ], | 27 ], |
29 }], | 28 }], |
30 ], | 29 ], |
31 }, | 30 }, |
32 { | 31 { |
33 # GN version: //cloud_print:cloud_print_unittests | |
34 'target_name': 'cloud_print_unittests', | 32 'target_name': 'cloud_print_unittests', |
35 'type': 'executable', | 33 'type': 'executable', |
36 'sources': [ | 34 'sources': [ |
37 'service/service_state_unittest.cc', | 35 'service/service_state_unittest.cc', |
38 ], | 36 ], |
39 'dependencies': [ | 37 'dependencies': [ |
40 '<(DEPTH)/base/base.gyp:base', | 38 '<(DEPTH)/base/base.gyp:base', |
41 '<(DEPTH)/base/base.gyp:run_all_unittests', | 39 '<(DEPTH)/base/base.gyp:run_all_unittests', |
42 '<(DEPTH)/base/base.gyp:test_support_base', | 40 '<(DEPTH)/base/base.gyp:test_support_base', |
43 '<(DEPTH)/testing/gmock.gyp:gmock', | 41 '<(DEPTH)/testing/gmock.gyp:gmock', |
(...skipping 20 matching lines...) Expand all Loading... |
64 'msvs_settings': { | 62 'msvs_settings': { |
65 'VCLinkerTool': { | 63 'VCLinkerTool': { |
66 'AdditionalDependencies': [ | 64 'AdditionalDependencies': [ |
67 'secur32.lib', | 65 'secur32.lib', |
68 ], | 66 ], |
69 }, | 67 }, |
70 }, | 68 }, |
71 }, | 69 }, |
72 ], | 70 ], |
73 } | 71 } |
OLD | NEW |