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

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

Issue 232773008: More removal of GTK code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 # 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 # http://crbug.com/105550 331 # http://crbug.com/105550
332 ['use_canvas_skia==1', { 332 ['use_canvas_skia==1', {
333 'sources!': [ 333 'sources!': [
334 'canvas_android.cc', 334 'canvas_android.cc',
335 ], 335 ],
336 }, { # use_canvas_skia!=1 336 }, { # use_canvas_skia!=1
337 'sources!': [ 337 'sources!': [
338 'canvas_skia.cc', 338 'canvas_skia.cc',
339 ], 339 ],
340 }], 340 }],
341 ['toolkit_uses_gtk == 1', {
342 'dependencies': [
343 '<(DEPTH)/build/linux/system.gyp:gtk',
344 ],
345 'sources': [
346 'gtk_native_view_id_manager.cc',
347 'gtk_native_view_id_manager.h',
348 'gtk_preserve_window.cc',
349 'gtk_preserve_window.h',
350 'gdk_compat.h',
351 'gtk_compat.h',
352 'gtk_util.cc',
353 'gtk_util.h',
354 'image/cairo_cached_surface.cc',
355 'image/cairo_cached_surface.h',
356 'scoped_gobject.h',
357 ],
358 }],
359 ['OS=="win"', { 341 ['OS=="win"', {
360 'sources': [ 342 'sources': [
361 'gdi_util.cc', 343 'gdi_util.cc',
362 'gdi_util.h', 344 'gdi_util.h',
363 'icon_util.cc', 345 'icon_util.cc',
364 'icon_util.h', 346 'icon_util.h',
365 ], 347 ],
366 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int 348 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int
367 # C4324 is structure was padded due to __declspec(align()), which is 349 # C4324 is structure was padded due to __declspec(align()), which is
368 # uninteresting. 350 # uninteresting.
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 ], 529 ],
548 'variables': { 530 'variables': {
549 'test_suite_name': 'gfx_unittests', 531 'test_suite_name': 'gfx_unittests',
550 }, 532 },
551 'includes': [ '../../build/apk_test.gypi' ], 533 'includes': [ '../../build/apk_test.gypi' ],
552 }, 534 },
553 ], 535 ],
554 }], 536 }],
555 ], 537 ],
556 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698