Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2211)

Unified Diff: content/content_browser.gypi

Issue 6537015: Start moving core pieces of Chrome multi-process code to src\content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/content_browser.gypi
===================================================================
--- content/content_browser.gypi (revision 0)
+++ content/content_browser.gypi (revision 0)
@@ -0,0 +1,63 @@
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'content_browser',
Ben Goodger (Google) 2011/02/18 04:08:30 Can these gypi files live in the subdirs? That mak
+ 'type': '<(library)',
+ 'dependencies': [
+ # Don't include now since it's empty and so will cause a linker error.
+ #'content_common',
+ '../app/app.gyp:app_resources',
+ '../skia/skia.gyp:skia',
+ '../ui/ui.gyp:ui_base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'browser/tab_contents/background_contents.cc',
+ 'browser/tab_contents/background_contents.h',
+ 'browser/tab_contents/constrained_window.h',
+ 'browser/tab_contents/infobar_delegate.cc',
+ 'browser/tab_contents/infobar_delegate.h',
+ 'browser/tab_contents/interstitial_page.cc',
+ 'browser/tab_contents/interstitial_page.h',
+ 'browser/tab_contents/language_state.cc',
+ 'browser/tab_contents/language_state.h',
+ 'browser/tab_contents/navigation_controller.cc',
+ 'browser/tab_contents/navigation_controller.h',
+ 'browser/tab_contents/navigation_entry.cc',
+ 'browser/tab_contents/navigation_entry.h',
+ 'browser/tab_contents/page_navigator.h',
+ 'browser/tab_contents/provisional_load_details.cc',
+ 'browser/tab_contents/provisional_load_details.h',
+ 'browser/tab_contents/render_view_host_manager.cc',
+ 'browser/tab_contents/render_view_host_manager.h',
+ 'browser/tab_contents/tab_contents.cc',
+ 'browser/tab_contents/tab_contents.h',
+ 'browser/tab_contents/tab_contents_delegate.cc',
+ 'browser/tab_contents/tab_contents_delegate.h',
+ 'browser/tab_contents/tab_contents_observer.cc',
+ 'browser/tab_contents/tab_contents_observer.h',
+ 'browser/tab_contents/tab_contents_view.cc',
+ 'browser/tab_contents/tab_contents_view.h',
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442',
+ }],
+ ['OS=="linux"', {
+ 'cflags': ['-Wextra', '-pedantic'],
+ }],
+ ['OS=="mac"', {
+ 'xcode_settings': {
+ 'WARNING_CFLAGS': ['-Wextra', '-pedantic'],
+ },
+ }]
+ ],
+ },
+ ],
+}
Property changes on: content\content_browser.gypi
___________________________________________________________________
Added: svn:eol-style
+ LF
« content/OWNERS ('K') | « content/content.gyp ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698