| 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 18 matching lines...) Expand all Loading... |
| 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', | 36 '../../google_update/google_update.gyp:google_update', |
| 37 '../../ipc/ipc.gyp:ipc', | 37 '../../ipc/ipc.gyp:ipc', |
| 38 '../../sandbox/sandbox.gyp:sandbox', | 38 '../../sandbox/sandbox.gyp:sandbox', |
| 39 '../../skia/skia.gyp:skia', |
| 39 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer', | 40 '../../ui/metro_viewer/metro_viewer.gyp:metro_viewer', |
| 41 '../../ui/ui.gyp:ui', |
| 40 '../win8.gyp:check_sdk_patch', | 42 '../win8.gyp:check_sdk_patch', |
| 41 ], | 43 ], |
| 42 'sources': [ | 44 'sources': [ |
| 43 'chrome_app_view.cc', | 45 'chrome_app_view.cc', |
| 44 'chrome_app_view.h', | 46 'chrome_app_view.h', |
| 45 'chrome_url_launch_handler.cc', | 47 'chrome_url_launch_handler.cc', |
| 46 'chrome_url_launch_handler.h', | 48 'chrome_url_launch_handler.h', |
| 47 '../delegate_execute/chrome_util.cc', | 49 '../delegate_execute/chrome_util.cc', |
| 48 '../delegate_execute/chrome_util.h', | 50 '../delegate_execute/chrome_util.h', |
| 49 'devices_handler.cc', | 51 'devices_handler.cc', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'run_all_unittests.cc', | 96 'run_all_unittests.cc', |
| 95 'winrt_utils.cc', | 97 'winrt_utils.cc', |
| 96 'winrt_utils.h', | 98 'winrt_utils.h', |
| 97 'winrt_utils_unittest.cc', | 99 'winrt_utils_unittest.cc', |
| 98 ], | 100 ], |
| 99 }, | 101 }, |
| 100 ], | 102 ], |
| 101 },], | 103 },], |
| 102 ], | 104 ], |
| 103 } | 105 } |
| OLD | NEW |