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

Side by Side Diff: content/content_common.gypi

Issue 16091011: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: splint_link fix Created 7 years, 6 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 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../media/media.gyp:media', 9 '../media/media.gyp:media',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 }, { # OS!="ios" 365 }, { # OS!="ios"
366 'dependencies': [ 366 'dependencies': [
367 '../cc/cc.gyp:cc', 367 '../cc/cc.gyp:cc',
368 '../gpu/gpu.gyp:gles2_c_lib', 368 '../gpu/gpu.gyp:gles2_c_lib',
369 '../gpu/gpu.gyp:gles2_implementation', 369 '../gpu/gpu.gyp:gles2_implementation',
370 '../gpu/gpu.gyp:gpu_ipc', 370 '../gpu/gpu.gyp:gpu_ipc',
371 '../ipc/ipc.gyp:ipc', 371 '../ipc/ipc.gyp:ipc',
372 '../media/media.gyp:shared_memory_support', 372 '../media/media.gyp:shared_memory_support',
373 '../third_party/WebKit/public/blink.gyp:blink', 373 '../third_party/WebKit/public/blink.gyp:blink',
374 '../ui/gl/gl.gyp:gl', 374 '../ui/gl/gl.gyp:gl',
375 '../webkit/base/webkit_base.gyp:webkit_base',
376 '../webkit/storage_browser.gyp:webkit_storage_browser',
377 '../webkit/storage_common.gyp:webkit_storage_common',
375 '../webkit/support/webkit_support.gyp:glue', 378 '../webkit/support/webkit_support.gyp:glue',
376 '../webkit/support/webkit_support.gyp:webkit_base',
377 '../webkit/support/webkit_support.gyp:webkit_storage',
378 ], 379 ],
379 }], 380 }],
380 ['OS=="android"',{ 381 ['OS=="android"',{
381 'link_settings': { 382 'link_settings': {
382 'libraries': [ 383 'libraries': [
383 '-landroid', # ANativeWindow 384 '-landroid', # ANativeWindow
384 ], 385 ],
385 }, 386 },
386 'dependencies': [ 387 'dependencies': [
387 'content.gyp:content_jni_headers', 388 'content.gyp:content_jni_headers',
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 540 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
540 '<(output)', 541 '<(output)',
541 '<(PRODUCT_DIR)', 542 '<(PRODUCT_DIR)',
542 ], 543 ],
543 'msvs_cygwin_shell': 1, 544 'msvs_cygwin_shell': 1,
544 }, 545 },
545 ] 546 ]
546 }], 547 }],
547 ], 548 ],
548 } 549 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698