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

Side by Side Diff: Source/WebKit/chromium/WebKit.gyp

Issue 15079005: Create a minimal webkit_common static library for use in browser process (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 57 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
58 ], 58 ],
59 'include_dirs': [ 59 'include_dirs': [
60 'public', 60 'public',
61 'src', 61 'src',
62 '<(DEPTH)/third_party/angle/include', 62 '<(DEPTH)/third_party/angle/include',
63 '<(DEPTH)/third_party/skia/include/utils', 63 '<(DEPTH)/third_party/skia/include/utils',
64 ], 64 ],
65 'defines': [ 65 'defines': [
66 'WEBKIT_IMPLEMENTATION=1', 66 'WEBKIT_IMPLEMENTATION=1',
67 'INSIDE_WEBKIT',
jamesr 2013/06/06 21:47:56 this is needed in order to build the blink API as
67 ], 68 ],
68 'sources': [ 69 'sources': [
69 '<@(webcore_platform_support_files)', 70 '<@(webcore_platform_support_files)',
70 'public/WebAccessibilityNotification.h', 71 'public/WebAccessibilityNotification.h',
71 'public/WebAccessibilityObject.h', 72 'public/WebAccessibilityObject.h',
72 'public/WebAccessibilityRole.h', 73 'public/WebAccessibilityRole.h',
73 'public/WebApplicationCacheHostClient.h', 74 'public/WebApplicationCacheHostClient.h',
74 'public/WebArrayBuffer.h', 75 'public/WebArrayBuffer.h',
75 'public/WebArrayBufferView.h', 76 'public/WebArrayBufferView.h',
76 'public/WebAudioSourceProvider.h', 77 'public/WebAudioSourceProvider.h',
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 'src/WebTextCheckingResult.cpp', 393 'src/WebTextCheckingResult.cpp',
393 'src/WebAccessibilityObject.cpp', 394 'src/WebAccessibilityObject.cpp',
394 'src/WebArrayBuffer.cpp', 395 'src/WebArrayBuffer.cpp',
395 'src/WebArrayBufferView.cpp', 396 'src/WebArrayBufferView.cpp',
396 'src/WebBindings.cpp', 397 'src/WebBindings.cpp',
397 'src/WebBlob.cpp', 398 'src/WebBlob.cpp',
398 'src/WebBlobData.cpp', 399 'src/WebBlobData.cpp',
399 'src/WebCache.cpp', 400 'src/WebCache.cpp',
400 'src/WebCachedURLRequest.cpp', 401 'src/WebCachedURLRequest.cpp',
401 'src/WebColorName.cpp', 402 'src/WebColorName.cpp',
402 'src/WebCommon.cpp',
403 'src/WebCrossOriginPreflightResultCache.cpp', 403 'src/WebCrossOriginPreflightResultCache.cpp',
404 'src/WebDOMActivityLogger.cpp', 404 'src/WebDOMActivityLogger.cpp',
405 'src/WebDOMCustomEvent.cpp', 405 'src/WebDOMCustomEvent.cpp',
406 'src/WebDOMEvent.cpp', 406 'src/WebDOMEvent.cpp',
407 'src/WebDOMEventListener.cpp', 407 'src/WebDOMEventListener.cpp',
408 'src/WebDOMEventListenerPrivate.cpp', 408 'src/WebDOMEventListenerPrivate.cpp',
409 'src/WebDOMEventListenerPrivate.h', 409 'src/WebDOMEventListenerPrivate.h',
410 'src/WebDOMMessageEvent.cpp', 410 'src/WebDOMMessageEvent.cpp',
411 'src/WebDOMMouseEvent.cpp', 411 'src/WebDOMMouseEvent.cpp',
412 'src/WebDOMMutationEvent.cpp', 412 'src/WebDOMMutationEvent.cpp',
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 'src/WorkerFileWriterCallbacksBridge.h', 554 'src/WorkerFileWriterCallbacksBridge.h',
555 'src/WorkerStorageQuotaCallbacksBridge.cpp', 555 'src/WorkerStorageQuotaCallbacksBridge.cpp',
556 'src/WorkerStorageQuotaCallbacksBridge.h', 556 'src/WorkerStorageQuotaCallbacksBridge.h',
557 'src/win/WebInputEventFactory.cpp', 557 'src/win/WebInputEventFactory.cpp',
558 'src/win/WebScreenInfoFactory.cpp', 558 'src/win/WebScreenInfoFactory.cpp',
559 ], 559 ],
560 'conditions': [ 560 'conditions': [
561 ['component=="shared_library"', { 561 ['component=="shared_library"', {
562 'defines': [ 562 'defines': [
563 'WEBKIT_DLL', 563 'WEBKIT_DLL',
564 'WEBKIT_IMPLEMENTATION=1',
565 ], 564 ],
566 'dependencies': [ 565 'dependencies': [
567 '../../core/core.gyp:webcore_derived', 566 '../../core/core.gyp:webcore_derived',
568 '../../core/core.gyp:webcore_test_support', 567 '../../core/core.gyp:webcore_test_support',
569 '<(DEPTH)/base/base.gyp:test_support_base', 568 '<(DEPTH)/base/base.gyp:test_support_base',
570 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 569 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
571 '<(DEPTH)/testing/gtest.gyp:gtest', 570 '<(DEPTH)/testing/gtest.gyp:gtest',
572 '<(DEPTH)/testing/gmock.gyp:gmock', 571 '<(DEPTH)/testing/gmock.gyp:gmock',
573 '<(DEPTH)/third_party/icu/icu.gyp:*', 572 '<(DEPTH)/third_party/icu/icu.gyp:*',
574 '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp:libjpeg' , 573 '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp:libjpeg' ,
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 ['clang==1', { 782 ['clang==1', {
784 'target_defaults': { 783 'target_defaults': {
785 'cflags': ['-Wglobal-constructors'], 784 'cflags': ['-Wglobal-constructors'],
786 'xcode_settings': { 785 'xcode_settings': {
787 'WARNING_CFLAGS': ['-Wglobal-constructors'], 786 'WARNING_CFLAGS': ['-Wglobal-constructors'],
788 }, 787 },
789 }, 788 },
790 }], 789 }],
791 ], # conditions 790 ], # conditions
792 } 791 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698