| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 source_set("metro_viewer_constants") { |
| 6 sources = [ |
| 7 "viewer/metro_viewer_constants.cc", |
| 8 "viewer/metro_viewer_constants.h", |
| 9 ] |
| 10 } |
| 11 |
| 12 component("metro_viewer") { |
| 13 sources = [ |
| 14 "viewer/metro_viewer_process_host.cc", |
| 15 "viewer/metro_viewer_process_host.h", |
| 16 ] |
| 17 |
| 18 defines = [ "METRO_VIEWER_IMPLEMENTATION" ] |
| 19 |
| 20 deps = [ |
| 21 ":metro_viewer_constants", |
| 22 "//base", |
| 23 "//ipc", |
| 24 "//ui/aura", |
| 25 "//ui/gfx", |
| 26 "//ui/metro_viewer", |
| 27 ] |
| 28 } |
| 29 |
| 5 source_set("test_support_win8") { | 30 source_set("test_support_win8") { |
| 6 sources = [ | 31 sources = [ |
| 7 "test/open_with_dialog_async.cc", | 32 "test/open_with_dialog_async.cc", |
| 8 "test/open_with_dialog_async.h", | 33 "test/open_with_dialog_async.h", |
| 9 "test/open_with_dialog_controller.cc", | 34 "test/open_with_dialog_controller.cc", |
| 10 "test/open_with_dialog_controller.h", | 35 "test/open_with_dialog_controller.h", |
| 11 "test/ui_automation_client.cc", | 36 "test/ui_automation_client.cc", |
| 12 "test/ui_automation_client.h", | 37 "test/ui_automation_client.h", |
| 13 ] | 38 ] |
| 14 | 39 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 43 ":test_registrar_constants", | 68 ":test_registrar_constants", |
| 44 "//base", | 69 "//base", |
| 45 "//build/config/sanitizers:deps", | 70 "//build/config/sanitizers:deps", |
| 46 | 71 |
| 47 # Chrome is the default viewer process currently used by the tests. | 72 # Chrome is the default viewer process currently used by the tests. |
| 48 # TODO(robertshield): Investigate building a standalone metro viewer | 73 # TODO(robertshield): Investigate building a standalone metro viewer |
| 49 # process. | 74 # process. |
| 50 "//chrome", | 75 "//chrome", |
| 51 ] | 76 ] |
| 52 } | 77 } |
| OLD | NEW |