| 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', | |
| 16 '../ui/ui.gyp:ui_base', | 15 '../ui/ui.gyp:ui_base', |
| 17 ], | 16 ], |
| 18 'include_dirs': [ | 17 'include_dirs': [ |
| 19 '..', | 18 '..', |
| 20 ], | 19 ], |
| 21 'sources': [ | 20 'sources': [ |
| 22 'browser/tab_contents/background_contents.cc', | 21 'browser/tab_contents/background_contents.cc', |
| 23 'browser/tab_contents/background_contents.h', | 22 'browser/tab_contents/background_contents.h', |
| 24 'browser/tab_contents/constrained_window.h', | 23 'browser/tab_contents/constrained_window.h', |
| 25 'browser/tab_contents/infobar_delegate.cc', | 24 'browser/tab_contents/infobar_delegate.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 52 }], | 51 }], |
| 53 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 52 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 54 'dependencies': [ | 53 'dependencies': [ |
| 55 '../build/linux/system.gyp:gtk', | 54 '../build/linux/system.gyp:gtk', |
| 56 ], | 55 ], |
| 57 }], | 56 }], |
| 58 ], | 57 ], |
| 59 }, | 58 }, |
| 60 ], | 59 ], |
| 61 } | 60 } |
| OLD | NEW |