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 | |
30 source_set("test_support_win8") { | 5 source_set("test_support_win8") { |
31 sources = [ | 6 sources = [ |
32 "test/open_with_dialog_async.cc", | 7 "test/open_with_dialog_async.cc", |
33 "test/open_with_dialog_async.h", | 8 "test/open_with_dialog_async.h", |
34 "test/open_with_dialog_controller.cc", | 9 "test/open_with_dialog_controller.cc", |
35 "test/open_with_dialog_controller.h", | 10 "test/open_with_dialog_controller.h", |
36 "test/ui_automation_client.cc", | 11 "test/ui_automation_client.cc", |
37 "test/ui_automation_client.h", | 12 "test/ui_automation_client.h", |
38 ] | 13 ] |
39 | 14 |
(...skipping 28 matching lines...) Expand all Loading... |
68 ":test_registrar_constants", | 43 ":test_registrar_constants", |
69 "//base", | 44 "//base", |
70 "//build/config/sanitizers:deps", | 45 "//build/config/sanitizers:deps", |
71 | 46 |
72 # Chrome is the default viewer process currently used by the tests. | 47 # Chrome is the default viewer process currently used by the tests. |
73 # TODO(robertshield): Investigate building a standalone metro viewer | 48 # TODO(robertshield): Investigate building a standalone metro viewer |
74 # process. | 49 # process. |
75 "//chrome", | 50 "//chrome", |
76 ] | 51 ] |
77 } | 52 } |
OLD | NEW |