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

Side by Side Diff: win8/win8.gyp

Issue 14629025: Create MetroViewerProcessHost as a common base for TestMetroViewerProcessHost and ChromeMetroViewer… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge before dcommit Created 7 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 | Annotate | Revision Log
« no previous file with comments | « win8/viewer/metro_viewer_process_host.cc ('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
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 'type': 'static_library', 44 'type': 'static_library',
45 'dependencies': [ 45 'dependencies': [
46 '../base/base.gyp:base', 46 '../base/base.gyp:base',
47 ], 47 ],
48 'sources': [ 48 'sources': [
49 'util/win8_util.cc', 49 'util/win8_util.cc',
50 'util/win8_util.h', 50 'util/win8_util.h',
51 ], 51 ],
52 }, 52 },
53 { 53 {
54 'target_name': 'metro_viewer',
55 'type': 'static_library',
56 'dependencies': [
57 '../base/base.gyp:base',
58 '../ipc/ipc.gyp:ipc',
59 '../ui/aura/aura.gyp:aura',
60 '../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages',
61 ],
62 'sources': [
63 'viewer/metro_viewer_process_host.cc',
64 'viewer/metro_viewer_process_host.h',
65 ],
66 },
67 {
54 'target_name': 'test_support_win8', 68 'target_name': 'test_support_win8',
55 'type': 'static_library', 69 'type': 'static_library',
56 'dependencies': [ 70 'dependencies': [
57 '../base/base.gyp:base', 71 '../base/base.gyp:base',
58 'test_registrar_constants', 72 'test_registrar_constants',
59 ], 73 ],
60 'sources': [ 74 'sources': [
61 'test/metro_registration_helper.cc', 75 'test/metro_registration_helper.cc',
62 'test/metro_registration_helper.h', 76 'test/metro_registration_helper.h',
63 'test/open_with_dialog_async.cc', 77 'test/open_with_dialog_async.cc',
(...skipping 12 matching lines...) Expand all
76 'include_dirs': [ 90 'include_dirs': [
77 '..', 91 '..',
78 ], 92 ],
79 'sources': [ 93 'sources': [
80 'test/test_registrar_constants.cc', 94 'test/test_registrar_constants.cc',
81 'test/test_registrar_constants.h', 95 'test/test_registrar_constants.h',
82 ], 96 ],
83 }, 97 },
84 ], 98 ],
85 } 99 }
OLDNEW
« no previous file with comments | « win8/viewer/metro_viewer_process_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698