| 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 '../../google_update/google_update.gyp:google_update', |
| 37 '../../ipc/ipc.gyp:ipc', |
| 36 '../../sandbox/sandbox.gyp:sandbox', | 38 '../../sandbox/sandbox.gyp:sandbox', |
| 37 '../../google_update/google_update.gyp:google_update', | 39 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer', |
| 38 '../win8.gyp:check_sdk_patch', | 40 '../win8.gyp:check_sdk_patch', |
| 39 ], | 41 ], |
| 40 'sources': [ | 42 'sources': [ |
| 41 'chrome_app_view.cc', | 43 'chrome_app_view.cc', |
| 42 'chrome_app_view.h', | 44 'chrome_app_view.h', |
| 43 'chrome_url_launch_handler.cc', | 45 'chrome_url_launch_handler.cc', |
| 44 'chrome_url_launch_handler.h', | 46 'chrome_url_launch_handler.h', |
| 45 '../delegate_execute/chrome_util.cc', | 47 '../delegate_execute/chrome_util.cc', |
| 46 '../delegate_execute/chrome_util.h', | 48 '../delegate_execute/chrome_util.h', |
| 47 'devices_handler.cc', | 49 'devices_handler.cc', |
| 48 'devices_handler.h', | 50 'devices_handler.h', |
| 51 'direct3d_helper.cc', |
| 52 'direct3d_helper.h', |
| 49 'file_picker.h', | 53 'file_picker.h', |
| 50 'file_picker.cc', | 54 'file_picker.cc', |
| 51 'metro_dialog_box.cc', | 55 'metro_dialog_box.cc', |
| 52 'metro_dialog_box.h', | 56 'metro_dialog_box.h', |
| 53 'metro_driver.cc', | 57 'metro_driver.cc', |
| 54 'print_handler.cc', | 58 'print_handler.cc', |
| 55 'print_handler.h', | 59 'print_handler.h', |
| 56 'print_document_source.cc', | 60 'print_document_source.cc', |
| 57 'print_document_source.h', | 61 'print_document_source.h', |
| 58 'secondary_tile.h', | 62 'secondary_tile.h', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'run_all_unittests.cc', | 94 'run_all_unittests.cc', |
| 91 'winrt_utils.cc', | 95 'winrt_utils.cc', |
| 92 'winrt_utils.h', | 96 'winrt_utils.h', |
| 93 'winrt_utils_unittest.cc', | 97 'winrt_utils_unittest.cc', |
| 94 ], | 98 ], |
| 95 }, | 99 }, |
| 96 ], | 100 ], |
| 97 },], | 101 },], |
| 98 ], | 102 ], |
| 99 } | 103 } |
| OLD | NEW |