| 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 | 7 |
| 8 source_set("lib") { | 8 source_set("lib") { |
| 9 sources = [ | 9 sources = [ |
| 10 "ax_provider_impl.cc", | 10 "ax_provider_impl.cc", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "//ui/native_theme", | 77 "//ui/native_theme", |
| 78 "//url", | 78 "//url", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 public_deps = [ | 81 public_deps = [ |
| 82 "//third_party/WebKit/public:blink", | 82 "//third_party/WebKit/public:blink", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 # GYP version: mojo/mojo_services.gypi:html_viewer | 86 # GYP version: mojo/mojo_services.gypi:html_viewer |
| 87 shared_library("html_viewer") { | 87 mojo_native_application("html_viewer") { |
| 88 sources = [ | 88 sources = [ |
| 89 "html_viewer.cc", | 89 "html_viewer.cc", |
| 90 ] | 90 ] |
| 91 deps = [ | 91 deps = [ |
| 92 ":lib", | 92 ":lib", |
| 93 ] | 93 ] |
| 94 } | 94 } |
| 95 | 95 |
| 96 test("tests") { | 96 test("tests") { |
| 97 output_name = "html_viewer_unittests" | 97 output_name = "html_viewer_unittests" |
| 98 sources = [ | 98 sources = [ |
| 99 "ax_provider_impl_unittest.cc", | 99 "ax_provider_impl_unittest.cc", |
| 100 ] | 100 ] |
| 101 deps = [ | 101 deps = [ |
| 102 ":lib", | 102 ":lib", |
| 103 "//base/test:run_all_unittests", | 103 "//base/test:run_all_unittests", |
| 104 ] | 104 ] |
| 105 } | 105 } |
| OLD | NEW |