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

Side by Side Diff: win8/win8.gyp

Issue 12096064: Automatic Win8 default browser registration for the ash unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dear Greg the second. Created 7 years, 10 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
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 '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
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': [
71 '../base/base.gyp:base',
72 # Chrome is the default viewer process currently used by the tests.
73 # TODO(robertshield): Investigate building a standalone metro viewer
74 # process.
75 '../chrome/chrome.gyp:chrome',
76 'test_registrar_constants',
77 ],
78 'sources': [
79 'test/test_registrar.cc',
80 'test/test_registrar.rc',
81 'test/test_registrar.rgs',
82 'test/test_registrar_resource.h',
83 ],
84 'msvs_settings': {
85 'VCLinkerTool': {
86 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
87 },
88 },
89 },
90 {
91 'target_name': 'test_registrar_constants',
92 'type': 'static_library',
93 'include_dirs': [
94 '..',
95 ],
96 'sources': [
97 'test/test_registrar_constants.cc',
98 'test/test_registrar_constants.h',
99 ],
100 },
64 ], 101 ],
65 } 102 }
OLDNEW
« win8/test/test_registrar_constants.cc ('K') | « win8/test/test_registrar_resource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698