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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 'gdi_util.h', | 410 'gdi_util.h', |
411 'icon_util.cc', | 411 'icon_util.cc', |
412 'icon_util.h', | 412 'icon_util.h', |
413 'sys_color_change_listener.cc', | 413 'sys_color_change_listener.cc', |
414 'sys_color_change_listener.h', | 414 'sys_color_change_listener.h', |
415 ], | 415 ], |
416 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int | 416 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int |
417 # C4324 is structure was padded due to __declspec(align()), which is | 417 # C4324 is structure was padded due to __declspec(align()), which is |
418 # uninteresting. | 418 # uninteresting. |
419 'msvs_disabled_warnings': [ 4267, 4324 ], | 419 'msvs_disabled_warnings': [ 4267, 4324 ], |
| 420 'msvs_settings': { |
| 421 'VCLinkerTool': { |
| 422 'AdditionalDependencies': [ |
| 423 'dwrite.lib', |
| 424 ] |
| 425 } |
| 426 } |
420 }], | 427 }], |
421 ['OS=="mac"', { | 428 ['OS=="mac"', { |
422 'link_settings': { | 429 'link_settings': { |
423 'libraries': [ | 430 'libraries': [ |
424 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', | 431 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', |
425 ], | 432 ], |
426 }, | 433 }, |
427 }], | 434 }], |
428 ['OS=="android"', { | 435 ['OS=="android"', { |
429 'sources!': [ | 436 'sources!': [ |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 ], | 616 ], |
610 'variables': { | 617 'variables': { |
611 'jni_gen_package': 'ui/gfx', | 618 'jni_gen_package': 'ui/gfx', |
612 }, | 619 }, |
613 'includes': [ '../../build/jni_generator.gypi' ], | 620 'includes': [ '../../build/jni_generator.gypi' ], |
614 }, | 621 }, |
615 ], | 622 ], |
616 }], | 623 }], |
617 ], | 624 ], |
618 } | 625 } |
OLD | NEW |