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" and (MSVS_VERSION=="2010" or MSVS_VERSION=="2010e")', { | 6 ['OS=="win" and (MSVS_VERSION=="2010" or MSVS_VERSION=="2010e")', { |
7 'variables': { | 7 'variables': { |
8 'chromium_code': 1, | 8 'chromium_code': 1, |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
(...skipping 13 matching lines...) Expand all Loading... |
24 ], | 24 ], |
25 }, | 25 }, |
26 }, | 26 }, |
27 }, | 27 }, |
28 'targets': [ | 28 'targets': [ |
29 { | 29 { |
30 'target_name': 'metro_driver', | 30 'target_name': 'metro_driver', |
31 'type': 'shared_library', | 31 'type': 'shared_library', |
32 'dependencies': [ | 32 'dependencies': [ |
33 '../../base/base.gyp:base', | 33 '../../base/base.gyp:base', |
34 » '../../build/temp_gyp/googleurl.gyp:googleurl', | 34 » '../../build/temp_gyp/googleurl.gyp:googleurl', |
35 '../../crypto/crypto.gyp:crypto', | 35 '../../crypto/crypto.gyp:crypto', |
| 36 '../../ipc/ipc.gyp:ipc', |
36 '../../sandbox/sandbox.gyp:sandbox', | 37 '../../sandbox/sandbox.gyp:sandbox', |
37 '../../google_update/google_update.gyp:google_update', | 38 '../../google_update/google_update.gyp:google_update', |
38 '../win8.gyp:check_sdk_patch', | 39 '../win8.gyp:check_sdk_patch', |
39 ], | 40 ], |
40 'sources': [ | 41 'sources': [ |
41 'chrome_app_view.cc', | 42 'chrome_app_view.cc', |
42 'chrome_app_view.h', | 43 'chrome_app_view.h', |
43 'chrome_url_launch_handler.cc', | 44 'chrome_url_launch_handler.cc', |
44 'chrome_url_launch_handler.h', | 45 'chrome_url_launch_handler.h', |
45 '../delegate_execute/chrome_util.cc', | 46 '../delegate_execute/chrome_util.cc', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 'run_all_unittests.cc', | 91 'run_all_unittests.cc', |
91 'winrt_utils.cc', | 92 'winrt_utils.cc', |
92 'winrt_utils.h', | 93 'winrt_utils.h', |
93 'winrt_utils_unittest.cc', | 94 'winrt_utils_unittest.cc', |
94 ], | 95 ], |
95 }, | 96 }, |
96 ], | 97 ], |
97 },], | 98 },], |
98 ], | 99 ], |
99 } | 100 } |
OLD | NEW |