| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 action("generate_blink_resource_map") { | 9 action("generate_blink_resource_map") { |
| 10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" | 10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 include_dirs = [ "third_party/WebKit" ] | 69 include_dirs = [ "third_party/WebKit" ] |
| 70 | 70 |
| 71 deps = [ | 71 deps = [ |
| 72 "//base", | 72 "//base", |
| 73 "//base/third_party/dynamic_annotations", | 73 "//base/third_party/dynamic_annotations", |
| 74 "//cc", | 74 "//cc", |
| 75 "//cc/blink", | 75 "//cc/blink", |
| 76 "//cc/surfaces", | 76 "//cc/surfaces", |
| 77 "//gin", | 77 "//gin", |
| 78 "//media", | 78 "//media", |
| 79 "//media/base", |
| 79 "//media/blink", | 80 "//media/blink", |
| 80 "//media/mojo", | 81 "//media/mojo", |
| 81 "//mojo/application", | 82 "//mojo/application", |
| 82 "//mojo/cc", | 83 "//mojo/cc", |
| 83 "//mojo/common", | 84 "//mojo/common", |
| 84 "//mojo/converters/surfaces", | 85 "//mojo/converters/surfaces", |
| 85 "//mojo/services/network/public/cpp", | 86 "//mojo/services/network/public/cpp", |
| 86 "//mojo/services/network/public/interfaces", | 87 "//mojo/services/network/public/interfaces", |
| 87 "//net", | 88 "//net", |
| 88 "//skia", | 89 "//skia", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 test("tests") { | 121 test("tests") { |
| 121 output_name = "html_viewer_unittests" | 122 output_name = "html_viewer_unittests" |
| 122 sources = [ | 123 sources = [ |
| 123 "ax_provider_impl_unittest.cc", | 124 "ax_provider_impl_unittest.cc", |
| 124 ] | 125 ] |
| 125 deps = [ | 126 deps = [ |
| 126 ":lib", | 127 ":lib", |
| 127 "//base/test:run_all_unittests", | 128 "//base/test:run_all_unittests", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| OLD | NEW |