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

Side by Side Diff: content/content_shell.gypi

Issue 7857019: Basic scaffolding for a "content shell", i.e. test browser over the content module. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | « content/content_browser.gypi ('k') | content/shell/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
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 'targets': [
7 {
8 'target_name': 'content_shell',
9 'type': 'executable',
10 'dependencies': [
11 'content_app',
12 'content_browser',
13 'content_common',
14 'content_gpu',
15 'content_plugin',
16 'content_ppapi_plugin',
17 'content_renderer',
18 'content_utility',
19 'content_worker',
20 '../skia/skia.gyp:skia',
21 '../ui/ui.gyp:ui',
22 ],
23 'include_dirs': [
24 '..',
25 ],
26 'sources': [
27 'shell/shell_browser_main.cc',
28 'shell/shell_browser_main.h',
29 'shell/shell_content_browser_client.cc',
30 'shell/shell_content_browser_client.h',
31 'shell/shell_content_client.cc',
32 'shell/shell_content_client.h',
33 'shell/shell_content_plugin_client.cc',
34 'shell/shell_content_plugin_client.h',
35 'shell/shell_content_renderer_client.cc',
36 'shell/shell_content_renderer_client.h',
37 'shell/shell_content_utility_client.cc',
38 'shell/shell_content_utility_client.h',
39 'shell/shell_main.cc',
40 ],
41 'msvs_settings': {
42 'VCLinkerTool': {
43 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
44 },
45 },
46 'conditions': [
47 ['OS=="win" and win_use_allocator_shim==1', {
48 'dependencies': [
49 '../base/allocator/allocator.gyp:allocator',
50 ],
51 }],
52 ],
53 },
54 ],
55 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | content/shell/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698