| 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 '../../testing/gtest.gyp:gtest', | 482 '../../testing/gtest.gyp:gtest', |
| 483 '../../third_party/libpng/libpng.gyp:libpng', | 483 '../../third_party/libpng/libpng.gyp:libpng', |
| 484 'gfx', | 484 'gfx', |
| 485 'gfx_geometry', | 485 'gfx_geometry', |
| 486 ], | 486 ], |
| 487 'conditions': [ | 487 'conditions': [ |
| 488 ['OS == "win"', { | 488 ['OS == "win"', { |
| 489 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 489 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 490 'msvs_disabled_warnings': [ 4267, ], | 490 'msvs_disabled_warnings': [ 4267, ], |
| 491 }], | 491 }], |
| 492 ['OS != "mac" and OS != "ios"', { |
| 493 'sources': [ |
| 494 'transform_unittest.cc', |
| 495 'interpolated_transform_unittest.cc', |
| 496 ], |
| 497 }], |
| 492 ], | 498 ], |
| 493 } | 499 } |
| 494 ], | 500 ], |
| 495 'conditions': [ | 501 'conditions': [ |
| 496 ['OS=="android"' , { | 502 ['OS=="android"' , { |
| 497 'targets': [ | 503 'targets': [ |
| 498 { | 504 { |
| 499 'target_name': 'gfx_jni_headers', | 505 'target_name': 'gfx_jni_headers', |
| 500 'type': 'none', | 506 'type': 'none', |
| 501 'sources': [ | 507 'sources': [ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 'x/x11_error_tracker.cc', | 556 'x/x11_error_tracker.cc', |
| 551 'x/x11_error_tracker.h', | 557 'x/x11_error_tracker.h', |
| 552 'x/x11_types.cc', | 558 'x/x11_types.cc', |
| 553 'x/x11_types.h', | 559 'x/x11_types.h', |
| 554 ], | 560 ], |
| 555 }, | 561 }, |
| 556 ] | 562 ] |
| 557 }], | 563 }], |
| 558 ], | 564 ], |
| 559 } | 565 } |
| OLD | NEW |