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

Side by Side Diff: ui/gfx/gfx.gyp

Issue 983413004: Eliminate ui/ios (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « ios/chrome/browser/ui/uikit_ui_util.mm ('k') | ui/gfx/gfx_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'image/image_skia_source.h', 205 'image/image_skia_source.h',
206 'image/image_skia_util_ios.h', 206 'image/image_skia_util_ios.h',
207 'image/image_skia_util_ios.mm', 207 'image/image_skia_util_ios.mm',
208 'image/image_skia_util_mac.h', 208 'image/image_skia_util_mac.h',
209 'image/image_skia_util_mac.mm', 209 'image/image_skia_util_mac.mm',
210 'image/image_util.cc', 210 'image/image_util.cc',
211 'image/image_util.h', 211 'image/image_util.h',
212 'image/image_util_ios.mm', 212 'image/image_util_ios.mm',
213 'interpolated_transform.cc', 213 'interpolated_transform.cc',
214 'interpolated_transform.h', 214 'interpolated_transform.h',
215 'ios/NSString+CrStringDrawing.h',
216 'ios/NSString+CrStringDrawing.mm',
217 'ios/uikit_util.h',
218 'ios/uikit_util.mm',
215 'linux_font_delegate.cc', 219 'linux_font_delegate.cc',
216 'linux_font_delegate.h', 220 'linux_font_delegate.h',
217 'mac/coordinate_conversion.h', 221 'mac/coordinate_conversion.h',
218 'mac/coordinate_conversion.mm', 222 'mac/coordinate_conversion.mm',
219 'mac/scoped_ns_disable_screen_updates.h', 223 'mac/scoped_ns_disable_screen_updates.h',
220 'native_widget_types.h', 224 'native_widget_types.h',
221 'nine_image_painter.cc', 225 'nine_image_painter.cc',
222 'nine_image_painter.h', 226 'nine_image_painter.h',
223 'overlay_transform.h', 227 'overlay_transform.h',
224 'path.cc', 228 'path.cc',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 'win/singleton_hwnd.cc', 310 'win/singleton_hwnd.cc',
307 'win/singleton_hwnd.h', 311 'win/singleton_hwnd.h',
308 'win/window_impl.cc', 312 'win/window_impl.cc',
309 'win/window_impl.h', 313 'win/window_impl.h',
310 ], 314 ],
311 'includes': [ 315 'includes': [
312 '../../build/android/increase_size_for_speed.gypi', 316 '../../build/android/increase_size_for_speed.gypi',
313 ], 317 ],
314 'conditions': [ 318 'conditions': [
315 ['OS=="ios"', { 319 ['OS=="ios"', {
316 'dependencies': [ 320 # Linkable dependents need to set the linker flag '-ObjC' in order to
317 '<(DEPTH)/ui/ios/ui_ios.gyp:ui_ios', 321 # use the categories in this target (e.g. NSString+CrStringDrawing.h).
318 ], 322 'link_settings': {
319 # iOS only uses a subset of UI. 323 'xcode_settings': {'OTHER_LDFLAGS': ['-ObjC']},
320 'sources/': [ 324 },
321 ['exclude', '^codec/jpeg_codec\\.cc$'], 325 'sources!': [
326 'codec/jpeg_codec.cc',
322 ], 327 ],
323 }, { 328 }, {
324 'dependencies': [ 329 'dependencies': [
325 '<(libjpeg_gyp_path):libjpeg', 330 '<(libjpeg_gyp_path):libjpeg',
326 ], 331 ],
327 }], 332 }],
328 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. 333 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc.
329 # http://crbug.com/105550 334 # http://crbug.com/105550
330 ['use_canvas_skia==1', { 335 ['use_canvas_skia==1', {
331 'sources!': [ 336 'sources!': [
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 ], 483 ],
479 'variables': { 484 'variables': {
480 'jni_gen_package': 'ui/gfx', 485 'jni_gen_package': 'ui/gfx',
481 }, 486 },
482 'includes': [ '../../build/jni_generator.gypi' ], 487 'includes': [ '../../build/jni_generator.gypi' ],
483 }, 488 },
484 ], 489 ],
485 }], 490 }],
486 ], 491 ],
487 } 492 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/uikit_ui_util.mm ('k') | ui/gfx/gfx_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698