| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../build/win_precompile.gypi', | 9 '../build/win_precompile.gypi', |
| 10 ], | 10 ], |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 { | 53 { |
| 54 'target_name': 'metro_viewer', | 54 'target_name': 'metro_viewer', |
| 55 'type': 'static_library', | 55 'type': 'static_library', |
| 56 'dependencies': [ | 56 'dependencies': [ |
| 57 '../base/base.gyp:base', | 57 '../base/base.gyp:base', |
| 58 '../ipc/ipc.gyp:ipc', | 58 '../ipc/ipc.gyp:ipc', |
| 59 '../ui/aura/aura.gyp:aura', | 59 '../ui/aura/aura.gyp:aura', |
| 60 '../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', | 60 '../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', |
| 61 ], | 61 ], |
| 62 'sources': [ | 62 'sources': [ |
| 63 'viewer/metro_viewer_constants.cc', |
| 64 'viewer/metro_viewer_constants.h', |
| 63 'viewer/metro_viewer_process_host.cc', | 65 'viewer/metro_viewer_process_host.cc', |
| 64 'viewer/metro_viewer_process_host.h', | 66 'viewer/metro_viewer_process_host.h', |
| 65 ], | 67 ], |
| 66 }, | 68 }, |
| 67 { | 69 { |
| 68 'target_name': 'test_support_win8', | 70 'target_name': 'test_support_win8', |
| 69 'type': 'static_library', | 71 'type': 'static_library', |
| 70 'dependencies': [ | 72 'dependencies': [ |
| 71 '../base/base.gyp:base', | 73 '../base/base.gyp:base', |
| 72 'test_registrar_constants', | 74 'test_registrar_constants', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 90 'include_dirs': [ | 92 'include_dirs': [ |
| 91 '..', | 93 '..', |
| 92 ], | 94 ], |
| 93 'sources': [ | 95 'sources': [ |
| 94 'test/test_registrar_constants.cc', | 96 'test/test_registrar_constants.cc', |
| 95 'test/test_registrar_constants.h', | 97 'test/test_registrar_constants.h', |
| 96 ], | 98 ], |
| 97 }, | 99 }, |
| 98 ], | 100 ], |
| 99 } | 101 } |
| OLD | NEW |