| 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 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 source_set("test_registrar_constants") { | 48 source_set("test_registrar_constants") { |
| 49 sources = [ | 49 sources = [ |
| 50 "test/test_registrar_constants.cc", | 50 "test/test_registrar_constants.cc", |
| 51 "test/test_registrar_constants.h", | 51 "test/test_registrar_constants.h", |
| 52 ] | 52 ] |
| 53 } | 53 } |
| 54 | 54 |
| 55 executable("test_registrar") { | 55 executable("test_registrar") { |
| 56 deps = [ | 56 deps = [ |
| 57 ":test_registrar_constants", |
| 57 "//base", | 58 "//base", |
| 59 "//build/config/sanitizers:deps", |
| 58 | 60 |
| 59 # Chrome is the default viewer process currently used by the tests. | 61 # Chrome is the default viewer process currently used by the tests. |
| 60 # TODO(robertshield): Investigate building a standalone metro viewer | 62 # TODO(robertshield): Investigate building a standalone metro viewer |
| 61 # process. | 63 # process. |
| 62 "//chrome", | 64 "//chrome", |
| 63 ":test_registrar_constants", | |
| 64 ] | 65 ] |
| 65 sources = [ | 66 sources = [ |
| 66 "test/test_registrar.cc", | 67 "test/test_registrar.cc", |
| 67 "test/test_registrar.rc", | 68 "test/test_registrar.rc", |
| 68 "test/test_registrar.rgs", | 69 "test/test_registrar.rgs", |
| 69 "test/test_registrar_resource.h", | 70 "test/test_registrar_resource.h", |
| 70 ] | 71 ] |
| 71 configs += [ "//build/config/win:windowed" ] | 72 configs += [ "//build/config/win:windowed" ] |
| 72 } | 73 } |
| OLD | NEW |