OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'target_defaults': { | 8 'target_defaults': { |
9 'conditions': [ | 9 'conditions': [ |
10 ['use_aura==1', { | 10 ['use_aura==1', { |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 # For accessibility | 508 # For accessibility |
509 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 509 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
510 ], | 510 ], |
511 'include_dirs': [ | 511 'include_dirs': [ |
512 '../../third_party/wtl/include', | 512 '../../third_party/wtl/include', |
513 ], | 513 ], |
514 'link_settings': { | 514 'link_settings': { |
515 'msvs_settings': { | 515 'msvs_settings': { |
516 'VCLinkerTool': { | 516 'VCLinkerTool': { |
517 'DelayLoadDLLs': [ | 517 'DelayLoadDLLs': [ |
518 'user32.dll', | 518 # TODO(siggi): Sort this - DO NOT SUBMIT |
| 519 # 'user32.dll', |
519 ], | 520 ], |
520 }, | 521 }, |
521 }, | 522 }, |
522 }, | 523 }, |
523 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 524 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
524 'msvs_disabled_warnings': [ 4267, ], | 525 'msvs_disabled_warnings': [ 4267, ], |
525 }], | 526 }], |
526 ['use_aura==0 or OS!="win"', { | 527 ['use_aura==0 or OS!="win"', { |
527 'sources!': [ | 528 'sources!': [ |
528 'widget/widget_message_filter.cc', | 529 'widget/widget_message_filter.cc', |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
963 'sources/': [ | 964 'sources/': [ |
964 # This is needed because the aura rule strips it from the default | 965 # This is needed because the aura rule strips it from the default |
965 # sources list. | 966 # sources list. |
966 ['include', '^../../content/app/startup_helper_win.cc'], | 967 ['include', '^../../content/app/startup_helper_win.cc'], |
967 ], | 968 ], |
968 }], | 969 }], |
969 ], | 970 ], |
970 }, # target_name: views_examples_with_content_exe | 971 }, # target_name: views_examples_with_content_exe |
971 ], | 972 ], |
972 } | 973 } |
OLD | NEW |