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

Side by Side Diff: win8/win8_tests.gyp

Issue 12207186: split test_registrar target into a new win8_tests.gyp. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « win8/win8.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2013 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 'variables': {
6 'chromium_code': 1,
7 },
8 'includes': [
9 '../build/win_precompile.gypi',
10 ],
11 'targets': [
12 {
13 'target_name': 'test_registrar',
14 'type': 'executable',
15 'dependencies': [
16 '../base/base.gyp:base',
17 # Chrome is the default viewer process currently used by the tests.
18 # TODO(robertshield): Investigate building a standalone metro viewer
19 # process.
20 '../chrome/chrome.gyp:chrome',
21 'win8.gyp:test_registrar_constants',
22 ],
23 'sources': [
24 'test/test_registrar.cc',
25 'test/test_registrar.rc',
26 'test/test_registrar.rgs',
27 'test/test_registrar_resource.h',
28 ],
29 'msvs_settings': {
30 'VCLinkerTool': {
31 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
32 },
33 },
34 },
35 ],
36 }
OLDNEW
« no previous file with comments | « win8/win8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698