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_app', | 8 'target_name': 'content_app', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '..', | 11 '..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 'content_browser', | 14 'content_browser', |
15 'content_common', | 15 'content_common', |
16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
17 '../base/base.gyp:base_i18n', | 17 '../base/base.gyp:base_i18n', |
18 '../crypto/crypto.gyp:crypto', | 18 '../crypto/crypto.gyp:crypto', |
19 '../ui/ui.gyp:ui', | 19 '../ui/ui.gyp:ui', |
20 ], | 20 ], |
21 'sources': [ | 21 'sources': [ |
22 'app/content_main.cc', | 22 'app/content_main.cc', |
23 'app/content_main.h', | 23 'app/content_main.h', |
24 'app/content_main_delegate.h', | 24 'app/content_main_delegate.h', |
25 'app/sandbox_helper_win.cc', | 25 'app/startup_helper_win.cc', |
26 'app/sandbox_helper_win.h', | 26 'app/startup_helper_win.h', |
27 ], | 27 ], |
28 'conditions': [ | 28 'conditions': [ |
29 ['OS=="win"', { | 29 ['OS=="win"', { |
30 'dependencies': [ | 30 'dependencies': [ |
31 '../sandbox/sandbox.gyp:sandbox', | 31 '../sandbox/sandbox.gyp:sandbox', |
32 ], | 32 ], |
33 }], | 33 }], |
34 ], | 34 ], |
35 }, | 35 }, |
36 ], | 36 ], |
37 } | 37 } |
OLD | NEW |