OLD | NEW |
---|---|
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 'includes': [ | 8 'includes': [ |
9 '../build/win_precompile.gypi', | 9 '../build/win_precompile.gypi', |
10 ], | 10 ], |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
44 'sources': [ | 44 'sources': [ |
45 'util/win8_util.cc', | 45 'util/win8_util.cc', |
46 'util/win8_util.h', | 46 'util/win8_util.h', |
47 ], | 47 ], |
48 }, | 48 }, |
49 { | 49 { |
50 'target_name': 'test_support_win8', | 50 'target_name': 'test_support_win8', |
51 'type': 'static_library', | 51 'type': 'static_library', |
52 'dependencies': [ | 52 'dependencies': [ |
53 '../base/base.gyp:base', | 53 '../base/base.gyp:base', |
54 'test_registrar_constants', | |
54 ], | 55 ], |
55 'sources': [ | 56 'sources': [ |
57 'test/metro_registration_helper.cc', | |
58 'test/metro_registration_helper.h', | |
56 'test/open_with_dialog_async.cc', | 59 'test/open_with_dialog_async.cc', |
57 'test/open_with_dialog_async.h', | 60 'test/open_with_dialog_async.h', |
58 'test/open_with_dialog_controller.cc', | 61 'test/open_with_dialog_controller.cc', |
59 'test/open_with_dialog_controller.h', | 62 'test/open_with_dialog_controller.h', |
60 'test/ui_automation_client.cc', | 63 'test/ui_automation_client.cc', |
61 'test/ui_automation_client.h', | 64 'test/ui_automation_client.h', |
62 ], | 65 ], |
63 }, | 66 }, |
67 { | |
68 'target_name': 'test_registrar', | |
69 'type': 'executable', | |
70 'dependencies': [ | |
grt (UTC plus 2)
2013/02/12 18:17:27
why doesn't this have a build-time dependency on c
robertshield
2013/02/12 18:35:34
As discussed, now it does.
| |
71 '../base/base.gyp:base', | |
72 'test_registrar_constants', | |
73 ], | |
74 'sources': [ | |
75 'test/test_registrar.cc', | |
76 'test/test_registrar.rc', | |
77 'test/test_registrar.rgs', | |
78 'test/test_registrar_resource.h', | |
79 ], | |
80 'msvs_settings': { | |
81 'VCLinkerTool': { | |
82 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
83 }, | |
84 }, | |
85 }, | |
86 { | |
87 'target_name': 'test_registrar_constants', | |
88 'type': 'static_library', | |
89 'include_dirs': [ | |
90 '..', | |
91 ], | |
92 'sources': [ | |
93 'test/test_registrar_constants.cc', | |
94 'test/test_registrar_constants.h', | |
95 ], | |
96 }, | |
64 ], | 97 ], |
65 } | 98 } |
OLD | NEW |