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

Side by Side Diff: content/content_common.gypi

Issue 10933091: Enable a minimal content/ build on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@rohits-image-change
Patch Set: Rebase Created 8 years, 3 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
« no previous file with comments | « content/content_browser.gypi ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../build/temp_gyp/googleurl.gyp:googleurl', 8 '../build/temp_gyp/googleurl.gyp:googleurl',
9 '../media/media.gyp:media', 9 '../media/media.gyp:media',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
11 '../skia/skia.gyp:skia', 11 '../skia/skia.gyp:skia',
12 '../third_party/icu/icu.gyp:icuuc', 12 '../third_party/icu/icu.gyp:icuuc',
13 '../ui/ui.gyp:ui', 13 '../ui/ui.gyp:ui',
14 '../webkit/support/webkit_support.gyp:forms',
15 '../webkit/support/webkit_support.gyp:user_agent', 14 '../webkit/support/webkit_support.gyp:user_agent',
16 ], 15 ],
17 'include_dirs': [ 16 'include_dirs': [
18 '..', 17 '..',
19 ], 18 ],
20 'export_dependent_settings': [ 19 'export_dependent_settings': [
21 '../base/base.gyp:base', 20 '../base/base.gyp:base',
22 ], 21 ],
23 'sources': [ 22 'sources': [
24 'public/common/bindings_policy.h', 23 'public/common/bindings_policy.h',
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 'public/common/webkit_param_traits.cc', 373 'public/common/webkit_param_traits.cc',
375 'public/common/webkit_param_traits.h', 374 'public/common/webkit_param_traits.h',
376 ], 375 ],
377 'conditions': [ 376 'conditions': [
378 ['OS=="ios"', { 377 ['OS=="ios"', {
379 'sources/': [ 378 'sources/': [
380 # iOS only needs a small portion of content; exclude all the 379 # iOS only needs a small portion of content; exclude all the
381 # implementation, and re-include what is used. 380 # implementation, and re-include what is used.
382 ['exclude', '\\.(cc|mm)$'], 381 ['exclude', '\\.(cc|mm)$'],
383 ['include', '_ios\\.(cc|mm)$'], 382 ['include', '_ios\\.(cc|mm)$'],
383 ['include', '^public/common/content_client\\.cc$'],
384 ['include', '^public/common/content_constants\\.cc$'], 384 ['include', '^public/common/content_constants\\.cc$'],
385 ['include', '^public/common/content_switches\\.cc$'], 385 ['include', '^public/common/content_switches\\.cc$'],
386 ['include', '^public/common/frame_navigate_params\\.cc$'], 386 ['include', '^public/common/frame_navigate_params\\.cc$'],
387 ['include', '^public/common/page_transition_types\\.cc$'], 387 ['include', '^public/common/page_transition_types\\.cc$'],
388 ['include', '^public/common/speech_recognition_result\\.cc$'], 388 ['include', '^public/common/speech_recognition_result\\.cc$'],
389 ['include', '^public/common/url_constants\\.cc$'], 389 ['include', '^public/common/url_constants\\.cc$'],
390 ['include', '^common/content_paths\\.cc$'], 390 ['include', '^common/content_paths\\.cc$'],
391 ['include', '^common/net/url_fetcher\\.cc$'], 391 ['include', '^common/net/url_fetcher\\.cc$'],
392 ['include', '^common/net/url_request_user_data\\.cc$'], 392 ['include', '^common/net/url_request_user_data\\.cc$'],
393 ['include', '^common/savable_url_schemes\\.cc$'], 393 ['include', '^common/savable_url_schemes\\.cc$'],
394 ['include', '^common/url_schemes\\.cc$'], 394 ['include', '^common/url_schemes\\.cc$'],
395 ], 395 ],
396 }, { # OS!="ios" 396 }, { # OS!="ios"
397 'dependencies': [ 397 'dependencies': [
398 '../gpu/gpu.gyp:gles2_implementation', 398 '../gpu/gpu.gyp:gles2_implementation',
399 '../gpu/gpu.gyp:gpu_ipc', 399 '../gpu/gpu.gyp:gpu_ipc',
400 '../ipc/ipc.gyp:ipc', 400 '../ipc/ipc.gyp:ipc',
401 '../media/media.gyp:shared_memory_support', 401 '../media/media.gyp:shared_memory_support',
402 '../ppapi/ppapi_internal.gyp:ppapi_shared', 402 '../ppapi/ppapi_internal.gyp:ppapi_shared',
403 '../third_party/npapi/npapi.gyp:npapi', 403 '../third_party/npapi/npapi.gyp:npapi',
404 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 404 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
405 '../ui/gl/gl.gyp:gl', 405 '../ui/gl/gl.gyp:gl',
406 '../webkit/support/webkit_support.gyp:appcache', 406 '../webkit/support/webkit_support.gyp:appcache',
407 '../webkit/support/webkit_support.gyp:blob', 407 '../webkit/support/webkit_support.gyp:blob',
408 '../webkit/support/webkit_support.gyp:database', 408 '../webkit/support/webkit_support.gyp:database',
409 '../webkit/support/webkit_support.gyp:fileapi', 409 '../webkit/support/webkit_support.gyp:fileapi',
410 '../webkit/support/webkit_support.gyp:forms',
410 '../webkit/support/webkit_support.gyp:webkit_base', 411 '../webkit/support/webkit_support.gyp:webkit_base',
411 ], 412 ],
412 }], 413 }],
413 ['OS!="win"', { 414 ['OS!="win"', {
414 'sources!': [ 415 'sources!': [
415 'common/sandbox_policy.cc', 416 'common/sandbox_policy.cc',
416 'common/sandbox_policy.h', 417 'common/sandbox_policy.h',
417 ], 418 ],
418 }], 419 }],
419 ['OS=="android"',{ 420 ['OS=="android"',{
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 '../build/extract_from_cab.py', 547 '../build/extract_from_cab.py',
547 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 548 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
548 '<(output)', 549 '<(output)',
549 '<(PRODUCT_DIR)', 550 '<(PRODUCT_DIR)',
550 ], 551 ],
551 }, 552 },
552 ] 553 ]
553 }], 554 }],
554 ], 555 ],
555 } 556 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698