| 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', |
| 46 '../delegate_execute/chrome_util.h', | 47 '../delegate_execute/chrome_util.h', |
| 47 'devices_handler.cc', | 48 'devices_handler.cc', |
| 48 'devices_handler.h', | 49 'devices_handler.h', |
| 50 'direct3d_helper.cc', |
| 51 'direct3d_helper.h', |
| 49 'file_picker.h', | 52 'file_picker.h', |
| 50 'file_picker.cc', | 53 'file_picker.cc', |
| 51 'metro_dialog_box.cc', | 54 'metro_dialog_box.cc', |
| 52 'metro_dialog_box.h', | 55 'metro_dialog_box.h', |
| 53 'metro_driver.cc', | 56 'metro_driver.cc', |
| 54 'print_handler.cc', | 57 'print_handler.cc', |
| 55 'print_handler.h', | 58 'print_handler.h', |
| 56 'print_document_source.cc', | 59 'print_document_source.cc', |
| 57 'print_document_source.h', | 60 'print_document_source.h', |
| 58 'secondary_tile.h', | 61 'secondary_tile.h', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'run_all_unittests.cc', | 93 'run_all_unittests.cc', |
| 91 'winrt_utils.cc', | 94 'winrt_utils.cc', |
| 92 'winrt_utils.h', | 95 'winrt_utils.h', |
| 93 'winrt_utils_unittest.cc', | 96 'winrt_utils_unittest.cc', |
| 94 ], | 97 ], |
| 95 }, | 98 }, |
| 96 ], | 99 ], |
| 97 },], | 100 },], |
| 98 ], | 101 ], |
| 99 } | 102 } |
| OLD | NEW |