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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 '../../crypto/crypto.gyp:crypto', | 56 '../../crypto/crypto.gyp:crypto', |
57 '../../google_update/google_update.gyp:google_update', | 57 '../../google_update/google_update.gyp:google_update', |
58 '../../ipc/ipc.gyp:ipc', | 58 '../../ipc/ipc.gyp:ipc', |
59 '../../chrome/chrome.gyp:installer_util', | |
gab
2013/09/03 21:05:19
Please insert this in alphabetical order; i.e., ju
zturner
2013/09/05 01:35:29
Done.
| |
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': [ |
66 'metro_driver.cc', | 67 'metro_driver.cc', |
67 'metro_driver.h', | 68 'metro_driver.h', |
68 'stdafx.h', | 69 'stdafx.h', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
135 'run_all_unittests.cc', | 136 'run_all_unittests.cc', |
136 'winrt_utils.cc', | 137 'winrt_utils.cc', |
137 'winrt_utils.h', | 138 'winrt_utils.h', |
138 'winrt_utils_unittest.cc', | 139 'winrt_utils_unittest.cc', |
139 ], | 140 ], |
140 }, | 141 }, |
141 ], | 142 ], |
142 },], | 143 },], |
143 ], | 144 ], |
144 } | 145 } |
OLD | NEW |