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 |
10 'target_name': 'cloud_print', | 11 'target_name': 'cloud_print', |
11 'type': 'none', | 12 'type': 'none', |
12 'dependencies': [ | 13 'dependencies': [ |
13 'gcp20/prototype/gcp20_device.gyp:*', | 14 'gcp20/prototype/gcp20_device.gyp:*', |
14 'service/service.gyp:*', | 15 'service/service.gyp:*', |
15 ], | 16 ], |
16 'conditions': [ | 17 'conditions': [ |
17 ['OS=="win"', { | 18 ['OS=="win"', { |
18 'dependencies': [ | 19 'dependencies': [ |
19 'service/win/service.gyp:*', | 20 'service/win/service.gyp:*', |
20 'virtual_driver/win/install/virtual_driver_install.gyp:*', | 21 'virtual_driver/win/install/virtual_driver_install.gyp:*', |
21 'virtual_driver/win/virtual_driver.gyp:*', | 22 'virtual_driver/win/virtual_driver.gyp:*', |
22 ], | 23 ], |
23 }], | 24 }], |
24 ['OS=="win" and target_arch=="ia32"', { | 25 ['OS=="win" and target_arch=="ia32"', { |
25 'dependencies': [ | 26 'dependencies': [ |
26 'virtual_driver/win/virtual_driver64.gyp:*', | 27 'virtual_driver/win/virtual_driver64.gyp:*', |
27 ], | 28 ], |
28 }], | 29 }], |
29 ], | 30 ], |
30 }, | 31 }, |
31 { | 32 { |
| 33 # GN version: //cloud_print:cloud_print_unittests |
32 'target_name': 'cloud_print_unittests', | 34 'target_name': 'cloud_print_unittests', |
33 'type': 'executable', | 35 'type': 'executable', |
34 'sources': [ | 36 'sources': [ |
35 'service/service_state_unittest.cc', | 37 'service/service_state_unittest.cc', |
36 ], | 38 ], |
37 'dependencies': [ | 39 'dependencies': [ |
38 '<(DEPTH)/base/base.gyp:base', | 40 '<(DEPTH)/base/base.gyp:base', |
39 '<(DEPTH)/base/base.gyp:run_all_unittests', | 41 '<(DEPTH)/base/base.gyp:run_all_unittests', |
40 '<(DEPTH)/base/base.gyp:test_support_base', | 42 '<(DEPTH)/base/base.gyp:test_support_base', |
41 '<(DEPTH)/testing/gmock.gyp:gmock', | 43 '<(DEPTH)/testing/gmock.gyp:gmock', |
(...skipping 20 matching lines...) Expand all Loading... |
62 'msvs_settings': { | 64 'msvs_settings': { |
63 'VCLinkerTool': { | 65 'VCLinkerTool': { |
64 'AdditionalDependencies': [ | 66 'AdditionalDependencies': [ |
65 'secur32.lib', | 67 'secur32.lib', |
66 ], | 68 ], |
67 }, | 69 }, |
68 }, | 70 }, |
69 }, | 71 }, |
70 ], | 72 ], |
71 } | 73 } |
OLD | NEW |