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

Side by Side Diff: content/content_shell.gypi

Issue 7906008: Create a very simple TabContentsView (and not fully implemented yet) and add more supporting code... (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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_shell', 8 'target_name': 'content_shell',
9 'type': 'executable', 9 'type': 'executable',
10 'dependencies': [ 10 'dependencies': [
11 'content_app', 11 'content_app',
12 'content_browser', 12 'content_browser',
13 'content_common', 13 'content_common',
14 'content_gpu', 14 'content_gpu',
15 'content_plugin', 15 'content_plugin',
16 'content_ppapi_plugin', 16 'content_ppapi_plugin',
17 'content_renderer', 17 'content_renderer',
18 'content_utility', 18 'content_utility',
19 'content_worker', 19 'content_worker',
20 '../skia/skia.gyp:skia', 20 '../skia/skia.gyp:skia',
21 '../ui/ui.gyp:ui', 21 '../ui/ui.gyp:ui',
22 ], 22 ],
23 'include_dirs': [ 23 'include_dirs': [
24 '..', 24 '..',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'browser/download/mock_download_manager_delegate.cc',
28 'browser/tab_contents/tab_contents_view_win.cc',
29 'browser/tab_contents/tab_contents_view_win.h',
30 'shell/shell_browser_context.cc',
31 'shell/shell_browser_context.h',
27 'shell/shell_browser_main.cc', 32 'shell/shell_browser_main.cc',
28 'shell/shell_browser_main.h', 33 'shell/shell_browser_main.h',
29 'shell/shell_content_browser_client.cc', 34 'shell/shell_content_browser_client.cc',
30 'shell/shell_content_browser_client.h', 35 'shell/shell_content_browser_client.h',
31 'shell/shell_content_client.cc', 36 'shell/shell_content_client.cc',
32 'shell/shell_content_client.h', 37 'shell/shell_content_client.h',
33 'shell/shell_content_plugin_client.cc', 38 'shell/shell_content_plugin_client.cc',
34 'shell/shell_content_plugin_client.h', 39 'shell/shell_content_plugin_client.h',
35 'shell/shell_content_renderer_client.cc', 40 'shell/shell_content_renderer_client.cc',
36 'shell/shell_content_renderer_client.h', 41 'shell/shell_content_renderer_client.h',
37 'shell/shell_content_utility_client.cc', 42 'shell/shell_content_utility_client.cc',
38 'shell/shell_content_utility_client.h', 43 'shell/shell_content_utility_client.h',
39 'shell/shell_main.cc', 44 'shell/shell_main.cc',
40 ], 45 ],
41 'msvs_settings': { 46 'msvs_settings': {
42 'VCLinkerTool': { 47 'VCLinkerTool': {
43 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 48 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
44 }, 49 },
45 }, 50 },
46 'conditions': [ 51 'conditions': [
47 ['OS=="win" and win_use_allocator_shim==1', { 52 ['OS=="win" and win_use_allocator_shim==1', {
48 'dependencies': [ 53 'dependencies': [
49 '../base/allocator/allocator.gyp:allocator', 54 '../base/allocator/allocator.gyp:allocator',
50 ], 55 ],
51 }], 56 }],
52 ], 57 ],
53 }, 58 },
54 ], 59 ],
55 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698