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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 'conditions': [ | 1007 'conditions': [ |
1008 ['OS=="win"', { | 1008 ['OS=="win"', { |
1009 'link_settings': { | 1009 'link_settings': { |
1010 'libraries': [ | 1010 'libraries': [ |
1011 '-limm32.lib', | 1011 '-limm32.lib', |
1012 '-loleacc.lib', | 1012 '-loleacc.lib', |
1013 ] | 1013 ] |
1014 }, | 1014 }, |
1015 'msvs_settings': { | 1015 'msvs_settings': { |
1016 'VCManifestTool': { | 1016 'VCManifestTool': { |
1017 'AdditionalManifestFiles': 'examples\\views_examples.exe.manifest'
, | 1017 'AdditionalManifestFiles': [ |
| 1018 'examples\\views_examples.exe.manifest', |
| 1019 ], |
1018 }, | 1020 }, |
1019 'VCLinkerTool': { | 1021 'VCLinkerTool': { |
1020 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 1022 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
1021 }, | 1023 }, |
1022 }, | 1024 }, |
1023 'dependencies': [ | 1025 'dependencies': [ |
1024 '../../sandbox/sandbox.gyp:sandbox', | 1026 '../../sandbox/sandbox.gyp:sandbox', |
1025 ], | 1027 ], |
1026 }], | 1028 }], |
1027 ['use_aura==1', { | 1029 ['use_aura==1', { |
1028 'dependencies': [ | 1030 'dependencies': [ |
1029 '../compositor/compositor.gyp:compositor', | 1031 '../compositor/compositor.gyp:compositor', |
1030 ], | 1032 ], |
1031 }], | 1033 }], |
1032 ['OS=="win"', { | 1034 ['OS=="win"', { |
1033 'sources/': [ | 1035 'sources/': [ |
1034 # This is needed because the aura rule strips it from the default | 1036 # This is needed because the aura rule strips it from the default |
1035 # sources list. | 1037 # sources list. |
1036 ['include', '^../../content/app/startup_helper_win.cc'], | 1038 ['include', '^../../content/app/startup_helper_win.cc'], |
1037 ], | 1039 ], |
1038 }], | 1040 }], |
1039 ], | 1041 ], |
1040 }, # target_name: views_examples_with_content_exe | 1042 }, # target_name: views_examples_with_content_exe |
1041 ], | 1043 ], |
1042 } | 1044 } |
OLD | NEW |