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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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',
Ben Goodger (Google) 2011/02/18 04:08:30 Can these gypi files live in the subdirs? That mak
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 }
OLDNEW
« 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