| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'includes': [ | 46 'includes': [ |
| 47 '../../chrome/version_resource_rules.gypi', | 47 '../../chrome/version_resource_rules.gypi', |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 'target_name': 'metro_driver', | 51 'target_name': 'metro_driver', |
| 52 'type': 'shared_library', | 52 'type': 'shared_library', |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 '../../base/base.gyp:base', | 54 '../../base/base.gyp:base', |
| 55 '../../chrome/common_constants.gyp:common_constants', | 55 '../../chrome/common_constants.gyp:common_constants', |
| 56 '../../chrome/chrome.gyp:installer_util', |
| 56 '../../crypto/crypto.gyp:crypto', | 57 '../../crypto/crypto.gyp:crypto', |
| 57 '../../google_update/google_update.gyp:google_update', | 58 '../../google_update/google_update.gyp:google_update', |
| 58 '../../ipc/ipc.gyp:ipc', | 59 '../../ipc/ipc.gyp:ipc', |
| 59 '../../sandbox/sandbox.gyp:sandbox', | 60 '../../sandbox/sandbox.gyp:sandbox', |
| 60 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', | 61 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', |
| 61 '../../url/url.gyp:url_lib', | 62 '../../url/url.gyp:url_lib', |
| 62 '../win8.gyp:check_sdk_patch', | 63 '../win8.gyp:check_sdk_patch', |
| 63 'metro_driver_version_resources', | 64 'metro_driver_version_resources', |
| 64 ], | 65 ], |
| 65 'sources': [ | 66 'sources': [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 82 'direct3d_helper.h', | 83 'direct3d_helper.h', |
| 83 'file_picker_ash.cc', | 84 'file_picker_ash.cc', |
| 84 'file_picker_ash.h', | 85 'file_picker_ash.h', |
| 85 ], | 86 ], |
| 86 }, { # use_aura!=1 | 87 }, { # use_aura!=1 |
| 87 'sources': [ | 88 'sources': [ |
| 88 'chrome_app_view.cc', | 89 'chrome_app_view.cc', |
| 89 'chrome_app_view.h', | 90 'chrome_app_view.h', |
| 90 'chrome_url_launch_handler.cc', | 91 'chrome_url_launch_handler.cc', |
| 91 'chrome_url_launch_handler.h', | 92 'chrome_url_launch_handler.h', |
| 92 '../delegate_execute/chrome_util.cc', | |
| 93 '../delegate_execute/chrome_util.h', | |
| 94 'devices_handler.cc', | 93 'devices_handler.cc', |
| 95 'devices_handler.h', | 94 'devices_handler.h', |
| 96 'file_picker.cc', | 95 'file_picker.cc', |
| 97 'file_picker.h', | 96 'file_picker.h', |
| 98 'metro_dialog_box.cc', | 97 'metro_dialog_box.cc', |
| 99 'metro_dialog_box.h', | 98 'metro_dialog_box.h', |
| 100 'print_document_source.cc', | 99 'print_document_source.cc', |
| 101 'print_document_source.h', | 100 'print_document_source.h', |
| 102 'print_handler.cc', | 101 'print_handler.cc', |
| 103 'print_handler.h', | 102 'print_handler.h', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 121 'resources/VisualElementsManifest.xml', | 120 'resources/VisualElementsManifest.xml', |
| 122 ], | 121 ], |
| 123 }, | 122 }, |
| 124 ], | 123 ], |
| 125 }, | 124 }, |
| 126 { | 125 { |
| 127 'target_name': 'metro_driver_unittests', | 126 'target_name': 'metro_driver_unittests', |
| 128 'type': 'executable', | 127 'type': 'executable', |
| 129 'dependencies': [ | 128 'dependencies': [ |
| 130 '../../base/base.gyp:base', | 129 '../../base/base.gyp:base', |
| 130 '../../chrome/chrome.gyp:installer_util', |
| 131 '../../testing/gtest.gyp:gtest', | 131 '../../testing/gtest.gyp:gtest', |
| 132 'metro_driver', | 132 'metro_driver', |
| 133 ], | 133 ], |
| 134 'sources': [ | 134 'sources': [ |
| 135 'run_all_unittests.cc', | 135 'run_all_unittests.cc', |
| 136 'winrt_utils.cc', | 136 'winrt_utils.cc', |
| 137 'winrt_utils.h', | 137 'winrt_utils.h', |
| 138 'winrt_utils_unittest.cc', | 138 'winrt_utils_unittest.cc', |
| 139 ], | 139 ], |
| 140 }, | 140 }, |
| 141 ], | 141 ], |
| 142 },], | 142 },], |
| 143 ], | 143 ], |
| 144 } | 144 } |
| OLD | NEW |