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

Side by Side Diff: content/content_common.gypi

Issue 10917130: Add preliminary iOS support to more content/ gypi files (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Typo fix 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 '../gpu/gpu.gyp:gles2_implementation',
10 '../gpu/gpu.gyp:gpu_ipc',
11 '../ipc/ipc.gyp:ipc',
12 '../media/media.gyp:media', 9 '../media/media.gyp:media',
13 '../media/media.gyp:shared_memory_support',
14 '../net/net.gyp:net', 10 '../net/net.gyp:net',
15 '../ppapi/ppapi_internal.gyp:ppapi_shared',
16 '../skia/skia.gyp:skia', 11 '../skia/skia.gyp:skia',
17 '../third_party/icu/icu.gyp:icuuc', 12 '../third_party/icu/icu.gyp:icuuc',
18 '../third_party/npapi/npapi.gyp:npapi',
19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
20 '../ui/gl/gl.gyp:gl',
21 '../ui/ui.gyp:ui', 13 '../ui/ui.gyp:ui',
22 '../webkit/support/webkit_support.gyp:appcache',
23 '../webkit/support/webkit_support.gyp:blob',
24 '../webkit/support/webkit_support.gyp:database',
25 '../webkit/support/webkit_support.gyp:fileapi',
26 '../webkit/support/webkit_support.gyp:forms', 14 '../webkit/support/webkit_support.gyp:forms',
27 '../webkit/support/webkit_support.gyp:user_agent', 15 '../webkit/support/webkit_support.gyp:user_agent',
28 '../webkit/support/webkit_support.gyp:webkit_base',
29 ], 16 ],
30 'include_dirs': [ 17 'include_dirs': [
31 '..', 18 '..',
32 ], 19 ],
33 'export_dependent_settings': [ 20 'export_dependent_settings': [
34 '../base/base.gyp:base', 21 '../base/base.gyp:base',
35 ], 22 ],
36 'sources': [ 23 'sources': [
37 'public/common/bindings_policy.h', 24 'public/common/bindings_policy.h',
38 'public/common/child_process_host.h', 25 'public/common/child_process_host.h',
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 'public/common/common_param_traits.h', 368 'public/common/common_param_traits.h',
382 'public/common/common_param_traits_macros.h', 369 'public/common/common_param_traits_macros.h',
383 'public/common/content_client.cc', 370 'public/common/content_client.cc',
384 'public/common/content_client.h', 371 'public/common/content_client.h',
385 'public/common/window_container_type.cc', 372 'public/common/window_container_type.cc',
386 'public/common/window_container_type.h', 373 'public/common/window_container_type.h',
387 'public/common/webkit_param_traits.cc', 374 'public/common/webkit_param_traits.cc',
388 'public/common/webkit_param_traits.h', 375 'public/common/webkit_param_traits.h',
389 ], 376 ],
390 'conditions': [ 377 'conditions': [
378 ['OS=="ios"', {
379 'sources/': [
380 # iOS only needs a small portion of content; exclude all the
381 # implementation, and re-include what is used.
382 ['exclude', '\\.(cc|mm)$'],
383 ['include', '_ios\\.(cc|mm)$'],
384 ['include', '^public/common/content_constants\\.cc$'],
385 ['include', '^public/common/content_switches\\.cc$'],
386 ['include', '^public/common/frame_navigate_params\\.cc$'],
387 ['include', '^public/common/page_transition_types\\.cc$'],
388 ['include', '^public/common/speech_recognition_result\\.cc$'],
389 ['include', '^public/common/url_constants\\.cc$'],
390 ['include', '^common/content_paths\\.cc$'],
391 ['include', '^common/net/url_fetcher\\.cc$'],
392 ['include', '^common/net/url_request_user_data\\.cc$'],
393 ['include', '^common/savable_url_schemes\\.cc$'],
394 ['include', '^common/url_schemes\\.cc$'],
395 ],
396 }, { # OS!="ios"
397 'dependencies': [
398 '../gpu/gpu.gyp:gles2_implementation',
399 '../gpu/gpu.gyp:gpu_ipc',
400 '../ipc/ipc.gyp:ipc',
401 '../media/media.gyp:shared_memory_support',
402 '../ppapi/ppapi_internal.gyp:ppapi_shared',
403 '../third_party/npapi/npapi.gyp:npapi',
404 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
405 '../ui/gl/gl.gyp:gl',
406 '../webkit/support/webkit_support.gyp:appcache',
407 '../webkit/support/webkit_support.gyp:blob',
408 '../webkit/support/webkit_support.gyp:database',
409 '../webkit/support/webkit_support.gyp:fileapi',
410 '../webkit/support/webkit_support.gyp:webkit_base',
411 ],
412 }],
391 ['OS!="win"', { 413 ['OS!="win"', {
392 'sources!': [ 414 'sources!': [
393 'common/sandbox_policy.cc', 415 'common/sandbox_policy.cc',
394 'common/sandbox_policy.h', 416 'common/sandbox_policy.h',
395 ], 417 ],
396 }], 418 }],
397 ['OS=="android"',{ 419 ['OS=="android"',{
398 'link_settings': { 420 'link_settings': {
399 'libraries': [ 421 'libraries': [
400 '-landroid', # ANativeWindow 422 '-landroid', # ANativeWindow
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 ], 543 ],
522 'action': [ 544 'action': [
523 'python', 545 'python',
524 '../build/extract_from_cab.py', 546 '../build/extract_from_cab.py',
525 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 547 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
526 '<(output)', 548 '<(output)',
527 '<(PRODUCT_DIR)', 549 '<(PRODUCT_DIR)',
528 ], 550 ],
529 }, 551 },
530 ] 552 ]
531 }] 553 }],
532 ], 554 ],
533 } 555 }
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