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

Side by Side Diff: cloud_print/cloud_print.gyp

Issue 1408623002: Add cloud_print to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 2 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698