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

Side by Side Diff: Source/web/web.gyp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased and building Created 7 years 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'dependencies': [ 80 'dependencies': [
81 '../core/core.gyp:webcore_derived', 81 '../core/core.gyp:webcore_derived',
82 '../core/core.gyp:webcore_test_support', 82 '../core/core.gyp:webcore_test_support',
83 '../modules/modules.gyp:modules_test_support', 83 '../modules/modules.gyp:modules_test_support',
84 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', 84 '../wtf/wtf_tests.gyp:wtf_unittest_helpers',
85 '<(DEPTH)/base/base.gyp:test_support_base', 85 '<(DEPTH)/base/base.gyp:test_support_base',
86 '<(DEPTH)/testing/gmock.gyp:gmock', 86 '<(DEPTH)/testing/gmock.gyp:gmock',
87 '<(DEPTH)/testing/gtest.gyp:gtest', 87 '<(DEPTH)/testing/gtest.gyp:gtest',
88 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 88 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
89 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 89 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
90 '<(libjpeg_gyp_path):libjpeg',
91 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', 90 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
92 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', 91 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp',
93 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 92 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
94 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', 93 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt',
95 '<(DEPTH)/third_party/modp_b64/modp_b64.gyp:modp_b64', 94 '<(DEPTH)/third_party/modp_b64/modp_b64.gyp:modp_b64',
96 '<(DEPTH)/third_party/ots/ots.gyp:ots', 95 '<(DEPTH)/third_party/ots/ots.gyp:ots',
97 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 96 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
98 '<(DEPTH)/url/url.gyp:url_lib', 97 '<(DEPTH)/url/url.gyp:url_lib',
99 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 98 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
99 '<(libjpeg_gyp_path):libjpeg',
100 # We must not add webkit_support here because of cyclic dependency. 100 # We must not add webkit_support here because of cyclic dependency.
101 ], 101 ],
102 'export_dependent_settings': [ 102 'export_dependent_settings': [
103 '<(DEPTH)/url/url.gyp:url_lib', 103 '<(DEPTH)/url/url.gyp:url_lib',
104 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 104 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
105 ], 105 ],
106 'include_dirs': [ 106 'include_dirs': [
107 # WARNING: Do not view this particular case as a precede nt for 107 # WARNING: Do not view this particular case as a precede nt for
108 # including WebCore headers in DumpRenderTree project. 108 # including WebCore headers in DumpRenderTree project.
109 '../core/testing/v8', # for WebCoreTestSupport.h, needed to link in window.internals code. 109 '../core/testing/v8', # for WebCoreTestSupport.h, needed to link in window.internals code.
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 ['clang==1', { 372 ['clang==1', {
373 'target_defaults': { 373 'target_defaults': {
374 'cflags': ['-Wglobal-constructors'], 374 'cflags': ['-Wglobal-constructors'],
375 'xcode_settings': { 375 'xcode_settings': {
376 'WARNING_CFLAGS': ['-Wglobal-constructors'], 376 'WARNING_CFLAGS': ['-Wglobal-constructors'],
377 }, 377 },
378 }, 378 },
379 }], 379 }],
380 ], # conditions 380 ], # conditions
381 } 381 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698