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

Unified Diff: cloud_print/service/win/service.gyp

Issue 10543021: Not all the files were added (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cloud_print/service/win/cloud_print_service.cc ('k') | cloud_print/service/win/service_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/win/service.gyp
diff --git a/cloud_print/service/win/service.gyp b/cloud_print/service/win/service.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..b365e839dbc89c8ad7f82b01e3688d5d23961727
--- /dev/null
+++ b/cloud_print/service/win/service.gyp
@@ -0,0 +1,66 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'target_defaults': {
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'include_dirs': [
+ '../../..',
+ ],
+ },
+ 'targets': [
+ {
+ 'target_name': 'cloud_print_service_lib',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../../base/base.gyp:base',
+ '../../../build/temp_gyp/googleurl.gyp:googleurl',
+ '../../../net/net.gyp:net',
+ ],
+ 'sources': [
+ 'chrome_launcher.cc',
+ 'chrome_launcher.h',
+ 'service_state.cc',
+ 'service_state.h',
+ 'service_switches.cc',
+ 'service_switches.h',
+ ]
+ },
+ {
+ 'target_name': 'cloud_print_service',
+ 'type': 'executable',
+ 'sources': [
+ 'cloud_print_service.cc',
+ 'cloud_print_service.h',
+ 'cloud_print_service.rc',
+ 'resource.h',
+ ],
+ 'dependencies': [
+ 'cloud_print_service_lib',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
+ 'UACExecutionLevel': '2', # /level='requireAdministrator'
+ },
+ },
+ },
+ {
+ 'target_name': 'cloud_print_service_unittests',
+ 'type': 'executable',
+ 'sources': [
+ 'service_state_unittest.cc',
+ ],
+ 'dependencies': [
+ '../../../base/base.gyp:run_all_unittests',
+ '../../../base/base.gyp:base',
+ '../../../base/base.gyp:test_support_base',
+ '../../../testing/gmock.gyp:gmock',
+ '../../../testing/gtest.gyp:gtest',
+ 'cloud_print_service_lib',
+ ],
+ },
+ ],
+}
« no previous file with comments | « cloud_print/service/win/cloud_print_service.cc ('k') | cloud_print/service/win/service_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698