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_browser', |
| 9 'type': '<(library)', |
| 10 'dependencies': [ |
| 11 # Don't include now since it's empty and so will cause a linker error. |
| 12 #'content_common', |
| 13 '../app/app.gyp:app_resources', |
| 14 '../skia/skia.gyp:skia', |
| 15 '../ui/ui.gyp:ui_base', |
| 16 ], |
| 17 'include_dirs': [ |
| 18 '..', |
| 19 ], |
| 20 'sources': [ |
| 21 'browser/tab_contents/background_contents.cc', |
| 22 'browser/tab_contents/background_contents.h', |
| 23 'browser/tab_contents/constrained_window.h', |
| 24 'browser/tab_contents/infobar_delegate.cc', |
| 25 'browser/tab_contents/infobar_delegate.h', |
| 26 'browser/tab_contents/interstitial_page.cc', |
| 27 'browser/tab_contents/interstitial_page.h', |
| 28 'browser/tab_contents/language_state.cc', |
| 29 'browser/tab_contents/language_state.h', |
| 30 'browser/tab_contents/navigation_controller.cc', |
| 31 'browser/tab_contents/navigation_controller.h', |
| 32 'browser/tab_contents/navigation_entry.cc', |
| 33 'browser/tab_contents/navigation_entry.h', |
| 34 'browser/tab_contents/page_navigator.h', |
| 35 'browser/tab_contents/provisional_load_details.cc', |
| 36 'browser/tab_contents/provisional_load_details.h', |
| 37 'browser/tab_contents/render_view_host_manager.cc', |
| 38 'browser/tab_contents/render_view_host_manager.h', |
| 39 'browser/tab_contents/tab_contents.cc', |
| 40 'browser/tab_contents/tab_contents.h', |
| 41 'browser/tab_contents/tab_contents_delegate.cc', |
| 42 'browser/tab_contents/tab_contents_delegate.h', |
| 43 'browser/tab_contents/tab_contents_observer.cc', |
| 44 'browser/tab_contents/tab_contents_observer.h', |
| 45 'browser/tab_contents/tab_contents_view.cc', |
| 46 'browser/tab_contents/tab_contents_view.h', |
| 47 ], |
| 48 'conditions': [ |
| 49 ['OS=="win"', { |
| 50 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442', |
| 51 }], |
| 52 ['OS=="linux"', { |
| 53 'cflags': ['-Wextra', '-pedantic'], |
| 54 }], |
| 55 ['OS=="mac"', { |
| 56 'xcode_settings': { |
| 57 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
| 58 }, |
| 59 }] |
| 60 ], |
| 61 }, |
| 62 ], |
| 63 } |
OLD | NEW |