| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="win"', { | 6 ['OS=="win"', { |
| 7 'variables': { | 7 'variables': { |
| 8 'chromium_code': 1, | 8 'chromium_code': 1, |
| 9 }, | 9 }, |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 '../../ui/events/events.gyp:events', | 58 '../../ui/events/events.gyp:events', |
| 59 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', | 59 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', |
| 60 '../../ui/gfx/gfx.gyp:gfx', | 60 '../../ui/gfx/gfx.gyp:gfx', |
| 61 '../../ui/gfx/gfx.gyp:gfx_geometry', | 61 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 62 '../../url/url.gyp:url_lib', | 62 '../../url/url.gyp:url_lib', |
| 63 'metro_driver_version_resources', | 63 'metro_driver_version_resources', |
| 64 ], | 64 ], |
| 65 'sources': [ | 65 'sources': [ |
| 66 'display_properties.cc', | 66 'display_properties.cc', |
| 67 'display_properties.h', | 67 'display_properties.h', |
| 68 'metro_driver.cc', | |
| 69 'metro_driver.h', | |
| 70 'metro_driver_win7.cc', | |
| 71 'stdafx.h', | 68 'stdafx.h', |
| 72 'winrt_utils.cc', | 69 'winrt_utils.cc', |
| 73 'winrt_utils.h', | 70 'winrt_utils.h', |
| 74 '<(SHARED_INTERMEDIATE_DIR)/metro_driver/metro_driver_dll_version.rc
', | 71 '<(SHARED_INTERMEDIATE_DIR)/metro_driver/metro_driver_dll_version.rc
', |
| 75 ], | 72 ], |
| 76 'conditions': [ | 73 'conditions': [ |
| 77 ['use_aura==1', { | 74 ['use_aura==1', { |
| 78 'dependencies': [ | |
| 79 '../win8.gyp:metro_viewer_constants', | |
| 80 ], | |
| 81 'sources': [ | 75 'sources': [ |
| 82 'chrome_app_view_ash.cc', | |
| 83 'chrome_app_view_ash.h', | |
| 84 'direct3d_helper.cc', | 76 'direct3d_helper.cc', |
| 85 'direct3d_helper.h', | 77 'direct3d_helper.h', |
| 86 'file_picker_ash.cc', | |
| 87 'file_picker_ash.h', | |
| 88 ], | 78 ], |
| 89 'includes': [ | 79 'includes': [ |
| 90 'ime/ime.gypi', | 80 'ime/ime.gypi', |
| 91 ], | 81 ], |
| 92 }, { # use_aura!=1 | 82 }, { # use_aura!=1 |
| 93 'sources': [ | 83 'sources': [ |
| 94 'chrome_app_view.cc', | 84 'chrome_app_view.cc', |
| 95 'chrome_app_view.h', | 85 'chrome_app_view.h', |
| 96 'chrome_url_launch_handler.cc', | 86 'chrome_url_launch_handler.cc', |
| 97 'chrome_url_launch_handler.h', | 87 'chrome_url_launch_handler.h', |
| 98 'devices_handler.cc', | 88 'devices_handler.cc', |
| 99 'devices_handler.h', | 89 'devices_handler.h', |
| 100 'file_picker.cc', | |
| 101 'file_picker.h', | |
| 102 'metro_dialog_box.cc', | 90 'metro_dialog_box.cc', |
| 103 'metro_dialog_box.h', | 91 'metro_dialog_box.h', |
| 104 'print_document_source.cc', | 92 'print_document_source.cc', |
| 105 'print_document_source.h', | 93 'print_document_source.h', |
| 106 'print_handler.cc', | 94 'print_handler.cc', |
| 107 'print_handler.h', | 95 'print_handler.h', |
| 108 'secondary_tile.cc', | 96 'secondary_tile.cc', |
| 109 'secondary_tile.h', | 97 'secondary_tile.h', |
| 110 'settings_handler.cc', | 98 'settings_handler.cc', |
| 111 'settings_handler.h', | 99 'settings_handler.h', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 141 'run_all_unittests.cc', | 129 'run_all_unittests.cc', |
| 142 'winrt_utils.cc', | 130 'winrt_utils.cc', |
| 143 'winrt_utils.h', | 131 'winrt_utils.h', |
| 144 'winrt_utils_unittest.cc', | 132 'winrt_utils_unittest.cc', |
| 145 ], | 133 ], |
| 146 }, | 134 }, |
| 147 ], | 135 ], |
| 148 },], | 136 },], |
| 149 ], | 137 ], |
| 150 } | 138 } |
| OLD | NEW |