| 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 import("//mojo/public/mojo.gni") | 5 import("//mojo/public/mojo.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/rules.gni") |
| 7 | 8 |
| 8 source_set("lib") { | 9 source_set("lib") { |
| 9 sources = [ | 10 sources = [ |
| 10 "ax_provider_impl.cc", | 11 "ax_provider_impl.cc", |
| 11 "ax_provider_impl.h", | 12 "ax_provider_impl.h", |
| 12 "blink_basic_type_converters.cc", | 13 "blink_basic_type_converters.cc", |
| 13 "blink_basic_type_converters.h", | 14 "blink_basic_type_converters.h", |
| 14 "blink_input_events_type_converters.cc", | 15 "blink_input_events_type_converters.cc", |
| 15 "blink_input_events_type_converters.h", | 16 "blink_input_events_type_converters.h", |
| 16 "blink_platform_impl.cc", | 17 "blink_platform_impl.cc", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 test("tests") { | 97 test("tests") { |
| 97 output_name = "html_viewer_unittests" | 98 output_name = "html_viewer_unittests" |
| 98 sources = [ | 99 sources = [ |
| 99 "ax_provider_impl_unittest.cc", | 100 "ax_provider_impl_unittest.cc", |
| 100 ] | 101 ] |
| 101 deps = [ | 102 deps = [ |
| 102 ":lib", | 103 ":lib", |
| 103 "//base/test:run_all_unittests", | 104 "//base/test:run_all_unittests", |
| 104 ] | 105 ] |
| 105 } | 106 } |
| OLD | NEW |