| 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") { | 5 source_set("metro_viewer_constants") { |
| 6 sources = [ | 6 sources = [ |
| 7 "viewer/metro_viewer_constants.cc", | 7 "viewer/metro_viewer_constants.cc", |
| 8 "viewer/metro_viewer_constants.h", | 8 "viewer/metro_viewer_constants.h", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| 11 | 11 |
| 12 component("metro_viewer") { | 12 component("metro_viewer") { |
| 13 deps = [ | 13 deps = [ |
| 14 ":metro_viewer_constants", |
| 14 "//base", | 15 "//base", |
| 15 "//ipc", | 16 "//ipc", |
| 16 "//ui/aura", | 17 "//ui/aura", |
| 17 "//ui/metro_viewer", | 18 "//ui/metro_viewer", |
| 18 ":metro_viewer_constants", | |
| 19 ] | 19 ] |
| 20 sources = [ | 20 sources = [ |
| 21 "viewer/metro_viewer_process_host.cc", | 21 "viewer/metro_viewer_process_host.cc", |
| 22 "viewer/metro_viewer_process_host.h", | 22 "viewer/metro_viewer_process_host.h", |
| 23 ] | 23 ] |
| 24 defines = [ "METRO_VIEWER_IMPLEMENTATION" ] | 24 defines = [ "METRO_VIEWER_IMPLEMENTATION" ] |
| 25 } | 25 } |
| 26 | 26 |
| 27 source_set("test_support_win8") { | 27 source_set("test_support_win8") { |
| 28 deps = [ | 28 deps = [ |
| 29 ":test_registrar_constants", |
| 29 "//base", | 30 "//base", |
| 30 ":test_registrar_constants", | |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 33 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 34 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 34 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 35 | 35 |
| 36 sources = [ | 36 sources = [ |
| 37 "test/open_with_dialog_async.cc", | 37 "test/open_with_dialog_async.cc", |
| 38 "test/open_with_dialog_async.h", | 38 "test/open_with_dialog_async.h", |
| 39 "test/open_with_dialog_controller.cc", | 39 "test/open_with_dialog_controller.cc", |
| 40 "test/open_with_dialog_controller.h", | 40 "test/open_with_dialog_controller.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 62 "//chrome", | 62 "//chrome", |
| 63 ] | 63 ] |
| 64 sources = [ | 64 sources = [ |
| 65 "test/test_registrar.cc", | 65 "test/test_registrar.cc", |
| 66 "test/test_registrar.rc", | 66 "test/test_registrar.rc", |
| 67 "test/test_registrar.rgs", | 67 "test/test_registrar.rgs", |
| 68 "test/test_registrar_resource.h", | 68 "test/test_registrar_resource.h", |
| 69 ] | 69 ] |
| 70 configs += [ "//build/config/win:windowed" ] | 70 configs += [ "//build/config/win:windowed" ] |
| 71 } | 71 } |
| OLD | NEW |