| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 group("all") { | 10 group("all") { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 static_library("lib") { | 53 static_library("lib") { |
| 54 sources = [ | 54 sources = [ |
| 55 "navigation.cc", | 55 "navigation.cc", |
| 56 "navigation.h", | 56 "navigation.h", |
| 57 "view_impl.cc", | 57 "view_impl.cc", |
| 58 "view_impl.h", | 58 "view_impl.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 public_deps = [ | 61 deps = [ |
| 62 "//base", | 62 "//base", |
| 63 "//content/public/common", | 63 "//content/public/browser", |
| 64 "//mojo/public/cpp/bindings", | |
| 65 "//services/navigation/public/interfaces", | 64 "//services/navigation/public/interfaces", |
| 66 "//services/shell/public/cpp", | 65 "//services/shell/public/cpp", |
| 67 "//services/ui/public/cpp", | 66 "//services/ui/public/cpp", |
| 68 ] | |
| 69 | |
| 70 deps = [ | |
| 71 "//content/public/browser", | |
| 72 "//skia", | 67 "//skia", |
| 73 "//ui/gfx/geometry/mojo", | 68 "//ui/gfx/geometry/mojo", |
| 74 "//ui/views", | 69 "//ui/views", |
| 75 "//ui/views/controls/webview", | 70 "//ui/views/controls/webview", |
| 76 "//ui/views/mus", | 71 "//ui/views/mus", |
| 77 ] | 72 ] |
| 78 } | 73 } |
| 79 | 74 |
| 80 test("navigation_unittests") { | 75 test("navigation_unittests") { |
| 81 sources = [ | 76 sources = [ |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "//net:net_resources", | 134 "//net:net_resources", |
| 140 "//third_party/WebKit/public:image_resources", | 135 "//third_party/WebKit/public:image_resources", |
| 141 "//third_party/WebKit/public:resources", | 136 "//third_party/WebKit/public:resources", |
| 142 "//ui/resources", | 137 "//ui/resources", |
| 143 "//ui/strings", | 138 "//ui/strings", |
| 144 "//ui/views/resources", | 139 "//ui/views/resources", |
| 145 ] | 140 ] |
| 146 | 141 |
| 147 output = "$root_out_dir/navigation.pak" | 142 output = "$root_out_dir/navigation.pak" |
| 148 } | 143 } |
| OLD | NEW |