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

Side by Side Diff: third_party/WebKit/Source/platform/blink_platform.gyp

Issue 1389383003: WIP: Introduce CompressibleString Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug fix Created 5 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
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 'target_name': 'blink_platform', 177 'target_name': 'blink_platform',
178 'type': '<(component)', 178 'type': '<(component)',
179 'dependencies': [ 179 'dependencies': [
180 '../config.gyp:config', 180 '../config.gyp:config',
181 '../wtf/wtf.gyp:wtf', 181 '../wtf/wtf.gyp:wtf',
182 'blink_common', 182 'blink_common',
183 'blink_heap_asm_stubs', 183 'blink_heap_asm_stubs',
184 'blink_prerequisites', 184 'blink_prerequisites',
185 '<(DEPTH)/base/base.gyp:base', 185 '<(DEPTH)/base/base.gyp:base',
186 '<(DEPTH)/cc/cc.gyp:cc', 186 '<(DEPTH)/cc/cc.gyp:cc',
187 '<(DEPTH)/components/components.gyp:compression',
187 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', 188 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib',
188 '<(DEPTH)/skia/skia.gyp:skia', 189 '<(DEPTH)/skia/skia.gyp:skia',
189 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 190 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
190 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 191 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
191 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', 192 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
192 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', 193 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp',
193 '<(DEPTH)/third_party/ots/ots.gyp:ots', 194 '<(DEPTH)/third_party/ots/ots.gyp:ots',
194 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', 195 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms',
195 '<(DEPTH)/url/url.gyp:url_lib', 196 '<(DEPTH)/url/url.gyp:url_lib',
196 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 197 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
(...skipping 14 matching lines...) Expand all
211 '<(DEPTH)/url/url.gyp:url_lib', 212 '<(DEPTH)/url/url.gyp:url_lib',
212 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg', 213 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg',
213 '<(libjpeg_gyp_path):libjpeg', 214 '<(libjpeg_gyp_path):libjpeg',
214 ], 215 ],
215 'defines': [ 216 'defines': [
216 'BLINK_PLATFORM_IMPLEMENTATION=1', 217 'BLINK_PLATFORM_IMPLEMENTATION=1',
217 'INSIDE_BLINK', 218 'INSIDE_BLINK',
218 ], 219 ],
219 'include_dirs': [ 220 'include_dirs': [
220 '<(angle_path)/include', 221 '<(angle_path)/include',
222 '<(DEPTH)',
221 '<(SHARED_INTERMEDIATE_DIR)/blink', 223 '<(SHARED_INTERMEDIATE_DIR)/blink',
222 ], 224 ],
223 'xcode_settings': { 225 'xcode_settings': {
224 # Some Mac-specific parts of WebKit won't compile without having this 226 # Some Mac-specific parts of WebKit won't compile without having this
225 # prefix header injected. 227 # prefix header injected.
226 'GCC_PREFIX_HEADER': '<(DEPTH)/third_party/WebKit/Source/build/mac/Prefix. h', 228 'GCC_PREFIX_HEADER': '<(DEPTH)/third_party/WebKit/Source/build/mac/Prefix. h',
227 }, 229 },
228 'sources': [ 230 'sources': [
229 '<@(platform_files)', 231 '<@(platform_files)',
230 '<@(platform_heap_files)', 232 '<@(platform_heap_files)',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 ['OS=="android"', { 465 ['OS=="android"', {
464 'cflags!': ['-mthumb'], 466 'cflags!': ['-mthumb'],
465 }], 467 }],
466 ], 468 ],
467 },{ # target_arch!="arm" 469 },{ # target_arch!="arm"
468 'type': 'none', 470 'type': 'none',
469 }], 471 }],
470 ], 472 ],
471 }], 473 }],
472 } 474 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698