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

Side by Side Diff: content/content_renderer.gypi

Issue 10823291: Exclude more files from Android build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change chrome_tests.gypi Created 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../ppapi/ppapi_internal.gyp:ppapi_host', 9 '../ppapi/ppapi_internal.gyp:ppapi_host',
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'renderer/web_ui_bindings.cc', 255 'renderer/web_ui_bindings.cc',
256 'renderer/web_ui_bindings.h', 256 'renderer/web_ui_bindings.h',
257 'renderer/webplugin_delegate_proxy.cc', 257 'renderer/webplugin_delegate_proxy.cc',
258 'renderer/webplugin_delegate_proxy.h', 258 'renderer/webplugin_delegate_proxy.h',
259 'renderer/websharedworker_proxy.cc', 259 'renderer/websharedworker_proxy.cc',
260 'renderer/websharedworker_proxy.h', 260 'renderer/websharedworker_proxy.h',
261 'renderer/websharedworkerrepository_impl.cc', 261 'renderer/websharedworkerrepository_impl.cc',
262 'renderer/websharedworkerrepository_impl.h', 262 'renderer/websharedworkerrepository_impl.h',
263 ], 263 ],
264 'conditions': [ 264 'conditions': [
265 ['notifications==0', {
266 'sources!': [
267 'renderer/notification_provider.cc',
268 'renderer/active_notification_tracker.cc',
269 ],
270 }],
271 ['input_speech==0', {
272 'sources!': [
273 'renderer/input_tag_speech_dispatcher.cc',
274 'renderer/input_tag_speech_dispatcher.h',
275 'renderer/speech_recognition_dispatcher.cc',
276 'renderer/speech_recognition_dispatcher.h',
277 ]
278 }],
265 ['toolkit_uses_gtk == 1', { 279 ['toolkit_uses_gtk == 1', {
266 'conditions': [
267 ['input_speech==0', {
268 'sources!': [
269 'renderer/input_tag_speech_dispatcher.cc',
270 'renderer/input_tag_speech_dispatcher.h',
271 'renderer/speech_recognition_dispatcher.cc',
272 'renderer/speech_recognition_dispatcher.h',
273 ]
274 }],
275 ['notifications==0', {
276 'sources!': [
277 'renderer/notification_provider.cc',
278 'renderer/active_notification_tracker.cc',
279 ],
280 }],
281 ],
282 'dependencies': [ 280 'dependencies': [
283 '../build/linux/system.gyp:gtk', 281 '../build/linux/system.gyp:gtk',
284 ], 282 ],
285 }], 283 }],
286 ['OS=="mac"', { 284 ['OS=="mac"', {
287 'sources!': [ 285 'sources!': [
288 'common/process_watcher_posix.cc', 286 'common/process_watcher_posix.cc',
289 ], 287 ],
290 }], 288 }],
291 ['OS=="win" and win_use_allocator_shim==1', { 289 ['OS=="win" and win_use_allocator_shim==1', {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 }], 355 }],
358 ], 356 ],
359 'target_conditions': [ 357 'target_conditions': [
360 ['OS=="android"', { 358 ['OS=="android"', {
361 'sources/': [ 359 'sources/': [
362 ['include', '^renderer/render_view_linux\\.cc$'], 360 ['include', '^renderer/render_view_linux\\.cc$'],
363 ], 361 ],
364 }], 362 }],
365 ], 363 ],
366 } 364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698