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_browser', | 8 'target_name': 'content_browser', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'dependencies': [ | 10 'dependencies': [ |
11 # Don't include now since it's empty and so will cause a linker error. | 11 # Don't include now since it's empty and so will cause a linker error. |
12 #'content_common', | 12 #'content_common', |
13 '../app/app.gyp:app_resources', | 13 '../app/app.gyp:app_resources', |
14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
| 15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
15 '../ui/ui.gyp:ui_base', | 16 '../ui/ui.gyp:ui_base', |
16 ], | 17 ], |
17 'include_dirs': [ | 18 'include_dirs': [ |
18 '..', | 19 '..', |
19 ], | 20 ], |
20 'sources': [ | 21 'sources': [ |
21 'browser/tab_contents/background_contents.cc', | 22 'browser/tab_contents/background_contents.cc', |
22 'browser/tab_contents/background_contents.h', | 23 'browser/tab_contents/background_contents.h', |
23 'browser/tab_contents/constrained_window.h', | 24 'browser/tab_contents/constrained_window.h', |
24 'browser/tab_contents/infobar_delegate.cc', | 25 'browser/tab_contents/infobar_delegate.cc', |
(...skipping 26 matching lines...) Expand all Loading... |
51 }], | 52 }], |
52 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 53 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
53 'dependencies': [ | 54 'dependencies': [ |
54 '../build/linux/system.gyp:gtk', | 55 '../build/linux/system.gyp:gtk', |
55 ], | 56 ], |
56 }], | 57 }], |
57 ], | 58 ], |
58 }, | 59 }, |
59 ], | 60 ], |
60 } | 61 } |
OLD | NEW |