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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'libraries': [ | 569 'libraries': [ |
570 '-limm32.lib', | 570 '-limm32.lib', |
571 '-loleacc.lib', | 571 '-loleacc.lib', |
572 ], | 572 ], |
573 'msvs_settings': { | 573 'msvs_settings': { |
574 'VCLinkerTool': { | 574 'VCLinkerTool': { |
575 'DelayLoadDLLs': [ | 575 'DelayLoadDLLs': [ |
576 'user32.dll', | 576 'user32.dll', |
577 ], | 577 ], |
578 }, | 578 }, |
579 'VCCLCompilerTool': { | |
580 'ForcedIncludeFiles': [ 'build/intsafe_workaround.h' ], | |
581 }, | |
582 }, | 579 }, |
583 }, | 580 }, |
584 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 581 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
585 'msvs_disabled_warnings': [ 4267, ], | 582 'msvs_disabled_warnings': [ 4267, ], |
586 }], | 583 }], |
587 ['OS!="win"', { | 584 ['OS!="win"', { |
588 'sources!': [ | 585 'sources!': [ |
589 'controls/menu/menu_wrapper.h', | 586 'controls/menu/menu_wrapper.h', |
590 'controls/menu/menu_2.cc', | 587 'controls/menu/menu_2.cc', |
591 'controls/menu/menu_2.h', | 588 'controls/menu/menu_2.h', |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 'sources/': [ | 1097 'sources/': [ |
1101 # This is needed because the aura rule strips it from the default | 1098 # This is needed because the aura rule strips it from the default |
1102 # sources list. | 1099 # sources list. |
1103 ['include', '^../../content/app/startup_helper_win.cc'], | 1100 ['include', '^../../content/app/startup_helper_win.cc'], |
1104 ], | 1101 ], |
1105 }], | 1102 }], |
1106 ], | 1103 ], |
1107 }, # target_name: views_examples_with_content_exe | 1104 }, # target_name: views_examples_with_content_exe |
1108 ], | 1105 ], |
1109 } | 1106 } |
OLD | NEW |