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

Side by Side Diff: content/content_child.gypi

Issue 20214004: move BrowserFontResource_Trusted to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android enable_plugins Created 7 years, 4 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../skia/skia.gyp:skia',
9 '../ui/ui.gyp:ui', 10 '../ui/ui.gyp:ui',
10 '../url/url.gyp:url_lib', 11 '../url/url.gyp:url_lib',
11 ], 12 ],
12 'include_dirs': [ 13 'include_dirs': [
13 '..', 14 '..',
14 ], 15 ],
15 'export_dependent_settings': [ 16 'export_dependent_settings': [
16 '../base/base.gyp:base', 17 '../base/base.gyp:base',
17 ], 18 ],
18 'sources': [ 19 'sources': [
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'child/webmessageportchannel_impl.h', 124 'child/webmessageportchannel_impl.h',
124 'public/child/image_decoder_utils.h', 125 'public/child/image_decoder_utils.h',
125 'public/child/resource_dispatcher_delegate.h', 126 'public/child/resource_dispatcher_delegate.h',
126 ], 127 ],
127 'conditions': [ 128 'conditions': [
128 ['OS=="android"', { 129 ['OS=="android"', {
129 'includes': [ 130 'includes': [
130 '../build/android/cpufeatures.gypi', 131 '../build/android/cpufeatures.gypi',
131 ], 132 ],
132 }], 133 }],
134 ['enable_plugins==1', {
135 'sources': [
136 'child/browser_font_resource_trusted.cc',
yzshen1 2013/07/25 17:21:08 [nit] now that we have child/npapi, does it make
jam 2013/07/25 17:23:23 let's wait until we have a bunch of pepper files f
scottmg 2013/07/25 17:39:49 ok, i'll leave it here for now then.
137 'child/browser_font_resource_trusted.h',
138 ],
139 }],
133 ['OS=="ios"', { 140 ['OS=="ios"', {
134 'sources/': [ 141 'sources/': [
135 # iOS only needs a small portion of content; exclude all the 142 # iOS only needs a small portion of content; exclude all the
136 # implementation, and re-include what is used. 143 # implementation, and re-include what is used.
137 ['exclude', '\\.(cc|mm)$'], 144 ['exclude', '\\.(cc|mm)$'],
138 ], 145 ],
139 }, { # OS!="ios" 146 }, { # OS!="ios"
140 'dependencies': [ 147 'dependencies': [
141 '../third_party/WebKit/public/blink.gyp:blink', 148 '../third_party/WebKit/public/blink.gyp:blink',
142 '../third_party/npapi/npapi.gyp:npapi', 149 '../third_party/npapi/npapi.gyp:npapi',
143 '../webkit/common/webkit_common.gyp:webkit_common', 150 '../webkit/common/webkit_common.gyp:webkit_common',
144 '../webkit/support/webkit_support.gyp:glue_child', 151 '../webkit/support/webkit_support.gyp:glue_child',
145 ], 152 ],
146 }], 153 }],
147 ['use_aura==1', { 154 ['use_aura==1', {
148 'sources!': [ 155 'sources!': [
149 'child/npapi/webplugin_delegate_impl_mac.mm', 156 'child/npapi/webplugin_delegate_impl_mac.mm',
150 ], 157 ],
151 }], 158 }],
152 ['use_aura==1 and OS=="win"', { 159 ['use_aura==1 and OS=="win"', {
153 'sources!': [ 160 'sources!': [
154 'child/npapi/webplugin_delegate_impl_aura.cc', 161 'child/npapi/webplugin_delegate_impl_aura.cc',
155 ], 162 ],
156 }], 163 }],
157 ], 164 ],
158 } 165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698