OLD | NEW |
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 'variables': { | 10 'variables': { |
11 'chromium_code': 1, | 11 'chromium_code': 1, |
12 }, | 12 }, |
13 'dependencies': [ | 13 'dependencies': [ |
14 'content_app', | 14 'content_app', |
15 'content_browser', | 15 'content_browser', |
16 'content_common', | 16 'content_common', |
17 'content_gpu', | 17 'content_gpu', |
18 'content_plugin', | 18 'content_plugin', |
19 'content_ppapi_plugin', | 19 'content_ppapi_plugin', |
20 'content_renderer', | 20 'content_renderer', |
21 'content_utility', | 21 'content_utility', |
22 'content_worker', | 22 'content_worker', |
23 '../skia/skia.gyp:skia', | 23 '../skia/skia.gyp:skia', |
24 '../ui/ui.gyp:ui', | 24 '../ui/ui.gyp:ui', |
| 25 '../v8/tools/gyp/v8.gyp:v8', |
25 ], | 26 ], |
26 'include_dirs': [ | 27 'include_dirs': [ |
27 '..', | 28 '..', |
28 ], | 29 ], |
29 'sources': [ | 30 'sources': [ |
30 'browser/download/mock_download_manager_delegate.cc', | 31 'browser/download/mock_download_manager_delegate.cc', |
31 'browser/tab_contents/tab_contents_view_win.cc', | 32 'browser/tab_contents/tab_contents_view_win.cc', |
32 'browser/tab_contents/tab_contents_view_win.h', | 33 'browser/tab_contents/tab_contents_view_win.h', |
33 'shell/shell.cc', | 34 'shell/shell.cc', |
34 'shell/shell.h', | 35 'shell/shell.h', |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 92 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
92 }, | 93 }, |
93 }, | 94 }, |
94 }, | 95 }, |
95 }, | 96 }, |
96 }], | 97 }], |
97 ], | 98 ], |
98 }, | 99 }, |
99 ], | 100 ], |
100 } | 101 } |
OLD | NEW |