forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Root solution for src/cloud_print. Build cloud_print_unittests on bots. Added virtual_driver_lib with shared files. Moved service_state out of win dir as platform independent. BUG=131058 TEST=unittests Review URL: https://chromiumcodereview.appspot.com/10505010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140703 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
vitalybuka@chromium.org
committed
Jun 6, 2012
1 parent
2e2392b
commit e1a31ac
Showing
21 changed files
with
294 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# 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. | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'cloud_print', | ||
'type': 'none', | ||
'dependencies': [ | ||
'service/service.gyp:*', | ||
], | ||
'conditions': [ | ||
['OS=="win"', { | ||
'dependencies': [ | ||
'virtual_driver/win/install/virtual_driver_install.gyp:*', | ||
'virtual_driver/win/virtual_driver.gyp:*', | ||
'virtual_driver/win/virtual_driver64.gyp:*', | ||
], | ||
}], | ||
], | ||
}, | ||
{ | ||
'target_name': 'cloud_print_unittests', | ||
'type': 'executable', | ||
'sources': [ | ||
'service/service_state_unittest.cc', | ||
], | ||
'dependencies': [ | ||
'<(DEPTH)/base/base.gyp:base', | ||
'<(DEPTH)/base/base.gyp:run_all_unittests', | ||
'<(DEPTH)/base/base.gyp:test_support_base', | ||
'<(DEPTH)/testing/gmock.gyp:gmock', | ||
'<(DEPTH)/testing/gtest.gyp:gtest', | ||
'service/service.gyp:cloud_print_service_lib', | ||
], | ||
'conditions': [ | ||
['OS=="win"', { | ||
'sources': [ | ||
'virtual_driver/win/port_monitor/port_monitor_unittest.cc', | ||
], | ||
'dependencies': [ | ||
'virtual_driver/win/virtual_driver.gyp:gcp_portmon_lib', | ||
], | ||
}], | ||
], | ||
}, | ||
], | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.