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

Side by Side Diff: cloud_print/cloud_print.gyp

Issue 13039002: Send data back from service using IPC, not file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | cloud_print/service/service.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 8 'variables': {
9 'version_py_path': '../tools/build/version.py', 9 'version_py_path': '../tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 '<(DEPTH)/base/base.gyp:base', 81 '<(DEPTH)/base/base.gyp:base',
82 '<(DEPTH)/base/base.gyp:run_all_unittests', 82 '<(DEPTH)/base/base.gyp:run_all_unittests',
83 '<(DEPTH)/base/base.gyp:test_support_base', 83 '<(DEPTH)/base/base.gyp:test_support_base',
84 '<(DEPTH)/testing/gmock.gyp:gmock', 84 '<(DEPTH)/testing/gmock.gyp:gmock',
85 '<(DEPTH)/testing/gtest.gyp:gtest', 85 '<(DEPTH)/testing/gtest.gyp:gtest',
86 'service/service.gyp:cloud_print_service_lib', 86 'service/service.gyp:cloud_print_service_lib',
87 ], 87 ],
88 'conditions': [ 88 'conditions': [
89 ['OS=="win"', { 89 ['OS=="win"', {
90 'sources': [ 90 'sources': [
91 'service/win/service_ipc_unittest.cc',
91 'virtual_driver/win/port_monitor/port_monitor_unittest.cc', 92 'virtual_driver/win/port_monitor/port_monitor_unittest.cc',
92 ], 93 ],
93 'dependencies': [ 94 'dependencies': [
94 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib', 95 'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib',
95 ], 96 ],
96 }], 97 }],
97 ], 98 ],
99 'msvs_settings': {
100 'VCLinkerTool': {
101 'AdditionalDependencies': [
102 'secur32.lib',
103 ],
104 },
105 },
98 }, 106 },
99 ], 107 ],
100 } 108 }
OLDNEW
« no previous file with comments | « no previous file | cloud_print/service/service.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698