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

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

Issue 14110002: Introduce bindings.gyp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 30 matching lines...) Expand all
41 'debug_devtools%': 0, 41 'debug_devtools%': 0,
42 }, 42 },
43 'targets': [ 43 'targets': [
44 { 44 {
45 'target_name': 'webkit', 45 'target_name': 'webkit',
46 'type': '<(component)', 46 'type': '<(component)',
47 'variables': { 'enable_wexit_time_destructors': 1, }, 47 'variables': { 'enable_wexit_time_destructors': 1, },
48 'dependencies': [ 48 'dependencies': [
49 '../../Platform/Platform.gyp/Platform.gyp:webkit_platform', 49 '../../Platform/Platform.gyp/Platform.gyp:webkit_platform',
50 '../../WebCore/WebCore.gyp/WebCore.gyp:webcore', 50 '../../WebCore/WebCore.gyp/WebCore.gyp:webcore',
51 '../../bindings/bindings.gyp:bindings',
51 '<(DEPTH)/skia/skia.gyp:skia', 52 '<(DEPTH)/skia/skia.gyp:skia',
52 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_glsl' , 53 '<(DEPTH)/third_party/angle/src/build_angle.gyp:translator_glsl' ,
53 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 54 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
54 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 55 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
55 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 56 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
56 'webkit_wtf_support', 57 'webkit_wtf_support',
57 ], 58 ],
58 'export_dependent_settings': [ 59 'export_dependent_settings': [
59 '../../Platform/Platform.gyp/Platform.gyp:webkit_platform', 60 '../../Platform/Platform.gyp/Platform.gyp:webkit_platform',
60 '<(DEPTH)/skia/skia.gyp:skia', 61 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 'src/win/WebInputEventFactory.cpp', 578 'src/win/WebInputEventFactory.cpp',
578 'src/win/WebScreenInfoFactory.cpp', 579 'src/win/WebScreenInfoFactory.cpp',
579 ], 580 ],
580 'conditions': [ 581 'conditions': [
581 ['component=="shared_library"', { 582 ['component=="shared_library"', {
582 'defines': [ 583 'defines': [
583 'WEBKIT_DLL', 584 'WEBKIT_DLL',
584 'WEBKIT_IMPLEMENTATION=1', 585 'WEBKIT_IMPLEMENTATION=1',
585 ], 586 ],
586 'dependencies': [ 587 'dependencies': [
587 '../../WebCore/WebCore.gyp/WebCore.gyp:webcore_bindings' , 588 '../../bindings/bindings.gyp:bindings',
Nico 2013/04/11 05:56:37 Is this needed? It looks like there's an unconditi
abarth-chromium 2013/04/11 06:25:17 I don't think it's needed, but I kept it for the t
588 '../../WebCore/WebCore.gyp/WebCore.gyp:webcore_test_supp ort', 589 '../../WebCore/WebCore.gyp/WebCore.gyp:webcore_test_supp ort',
589 '<(DEPTH)/base/base.gyp:test_support_base', 590 '<(DEPTH)/base/base.gyp:test_support_base',
590 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 591 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
591 '<(DEPTH)/testing/gtest.gyp:gtest', 592 '<(DEPTH)/testing/gtest.gyp:gtest',
592 '<(DEPTH)/testing/gmock.gyp:gmock', 593 '<(DEPTH)/testing/gmock.gyp:gmock',
593 '<(DEPTH)/third_party/icu/icu.gyp:*', 594 '<(DEPTH)/third_party/icu/icu.gyp:*',
594 '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp:libjpeg' , 595 '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp:libjpeg' ,
595 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', 596 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
596 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 597 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
597 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', 598 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt',
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 ['clang==1', { 1237 ['clang==1', {
1237 'target_defaults': { 1238 'target_defaults': {
1238 'cflags': ['-Wglobal-constructors'], 1239 'cflags': ['-Wglobal-constructors'],
1239 'xcode_settings': { 1240 'xcode_settings': {
1240 'WARNING_CFLAGS': ['-Wglobal-constructors'], 1241 'WARNING_CFLAGS': ['-Wglobal-constructors'],
1241 }, 1242 },
1242 }, 1243 },
1243 }], 1244 }],
1244 ], # conditions 1245 ], # conditions
1245 } 1246 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698