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 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 954 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
955 'msvs_disabled_warnings': [ 4267, ], | 955 'msvs_disabled_warnings': [ 4267, ], |
956 }], | 956 }], |
957 ], | 957 ], |
958 }, # target_name: views_examples_lib | 958 }, # target_name: views_examples_lib |
959 { | 959 { |
960 'target_name': 'views_examples_exe', | 960 'target_name': 'views_examples_exe', |
961 'type': 'executable', | 961 'type': 'executable', |
962 'dependencies': [ | 962 'dependencies': [ |
963 '../../base/base.gyp:base', | 963 '../../base/base.gyp:base', |
| 964 '../gfx/gfx.gyp:gfx', |
| 965 '../resources/ui_resources.gyp:ui_test_pak', |
| 966 '../ui.gyp:ui', |
| 967 'views', |
964 ], | 968 ], |
965 'sources': [ | 969 'sources': [ |
966 'examples/examples_main.cc', | 970 'examples/examples_main.cc', |
967 ], | 971 ], |
968 }, # target_name: views_examples_exe | 972 }, # target_name: views_examples_exe |
969 { | 973 { |
970 'target_name': 'views_examples_with_content_lib', | 974 'target_name': 'views_examples_with_content_lib', |
971 'type': '<(component)', | 975 'type': '<(component)', |
972 'dependencies': [ | 976 'dependencies': [ |
973 '../../base/base.gyp:base', | 977 '../../base/base.gyp:base', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1124 'sources/': [ | 1128 'sources/': [ |
1125 # This is needed because the aura rule strips it from the default | 1129 # This is needed because the aura rule strips it from the default |
1126 # sources list. | 1130 # sources list. |
1127 ['include', '^../../content/app/startup_helper_win.cc'], | 1131 ['include', '^../../content/app/startup_helper_win.cc'], |
1128 ], | 1132 ], |
1129 }], | 1133 }], |
1130 ], | 1134 ], |
1131 }, # target_name: views_examples_with_content_exe | 1135 }, # target_name: views_examples_with_content_exe |
1132 ], | 1136 ], |
1133 } | 1137 } |
OLD | NEW |