| OLD | NEW |
| 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 Loading... |
| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 ], | 547 ], |
| 566 'variables': { | 548 'variables': { |
| 567 'test_suite_name': 'gfx_unittests', | 549 'test_suite_name': 'gfx_unittests', |
| 568 }, | 550 }, |
| 569 'includes': [ '../../build/apk_test.gypi' ], | 551 'includes': [ '../../build/apk_test.gypi' ], |
| 570 }, | 552 }, |
| 571 ], | 553 ], |
| 572 }], | 554 }], |
| 573 ], | 555 ], |
| 574 } | 556 } |
| OLD | NEW |