| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("core") { |
| 6 visibility = [ "//blimp/*" ] |
| 7 |
| 8 sources = [ |
| 9 "blimp_contents_impl.cc", |
| 10 "blimp_contents_impl.h", |
| 11 "blimp_navigation_controller_delegate.h", |
| 12 "blimp_navigation_controller_impl.cc", |
| 13 "blimp_navigation_controller_impl.h", |
| 14 ] |
| 15 |
| 16 deps = [ |
| 17 "//base", |
| 18 "//blimp/client/core/public", |
| 19 "//url", |
| 20 ] |
| 21 } |
| 22 |
| 23 source_set("unit_tests") { |
| 24 testonly = true |
| 25 |
| 26 sources = [ |
| 27 "blimp_contents_impl_unittest.cc", |
| 28 "blimp_navigation_controller_impl_unittest.cc", |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 "//base", |
| 33 "//blimp/client/core", |
| 34 "//blimp/client/core/public", |
| 35 "//testing/gtest", |
| 36 "//url", |
| 37 ] |
| 38 } |
| OLD | NEW |