OLD | NEW |
(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 } |
OLD | NEW |