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

Side by Side Diff: cloud_print/virtual_driver/win/install/virtual_driver_install.gyp

Issue 6930019: Added resources. (Closed)
Patch Set: Dealing with git stupidity Created 9 years, 7 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
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'target_defaults': {
7 'variables': {
8 'chromium_code': 1,
9 },
10 'include_dirs': [
11 '../../../..',
12 ],
13 },
14 'targets' : [
15 {
16 'target_name': 'virtual_driver_setup',
17 'type': 'executable',
18 'msvs_guid': 'E1E25ACA-043D-4D6E-A06F-97126532843A',
19 'dependencies': [
20 '../../../../base/base.gyp:base',
21 'virtual_driver_setup_resources',
22 ],
23 'sources': [
24 'setup.cc',
25 '../virtual_driver_consts.h',
26 '../virtual_driver_consts.cc',
27 '../virtual_driver_helpers.h',
28 '../virtual_driver_helpers.cc',
29 '../virtual_driver_common_resources.rc',
30 '<(SHARED_INTERMEDIATE_DIR)/virtual_driver_setup_resources/virtual_drive r_setup_resources_en-US.rc',
31 '<(SHARED_INTERMEDIATE_DIR)/virtual_driver_setup_resources/virtual_drive r_setup_resources_es.rc',
32 ],
33 'msvs_settings': {
34 'VCLinkerTool': {
35 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
36 },
37 },
38 },
39 {
40 'target_name': 'virtual_driver_setup_resources',
41 'type': 'none',
42 'msvs_guid': '13D30B4C-1B06-40DB-8ED6-D2CAD76940CB',
43 'variables': {
44 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/virtual_driver_setup_resourc es',
45 },
46 'actions': [
47 {
48 'action_name': 'virtual_driver_setup_resources',
49 'variables': {
50 'grit_grd_file': 'virtual_driver_setup_resources.grd',
51 },
52 'includes': [ '../../../../build/grit_action.gypi' ],
53 },
54 ],
55 'includes': [ '../../../../build/grit_target.gypi' ],
56 },
57 ],
58 }
59
60 # Local Variables:
61 # tab-width:2
62 # indent-tabs-mode:nil
63 # End:
64 # vim: set expandtab tabstop=2 shiftwidth=2:
65
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698