Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: blimp/client/core/BUILD.gn

Issue 2040813004: Add BlimpContents[,Observer] and BlimpNavigationController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git merge origin/master Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/client/BUILD.gn ('k') | blimp/client/core/blimp_contents_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « blimp/client/BUILD.gn ('k') | blimp/client/core/blimp_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698