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

Side by Side Diff: components/guest_view/browser/BUILD.gn

Issue 1311623002: Add more components_unittests to GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 4 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 | « components/error_page/renderer/BUILD.gn ('k') | components/json_schema/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("browser") { 5 source_set("browser") {
6 output_name = "guest_view_browser" 6 output_name = "guest_view_browser"
7 sources = [ 7 sources = [
8 "//components/guest_view/browser/guest_view.h", 8 "//components/guest_view/browser/guest_view.h",
9 "//components/guest_view/browser/guest_view_base.cc", 9 "//components/guest_view/browser/guest_view_base.cc",
10 "//components/guest_view/browser/guest_view_base.h", 10 "//components/guest_view/browser/guest_view_base.h",
(...skipping 18 matching lines...) Expand all
29 ] 29 ]
30 } 30 }
31 31
32 source_set("test_support") { 32 source_set("test_support") {
33 testonly = true 33 testonly = true
34 sources = [ 34 sources = [
35 "//components/guest_view/browser/test_guest_view_manager.cc", 35 "//components/guest_view/browser/test_guest_view_manager.cc",
36 "//components/guest_view/browser/test_guest_view_manager.h", 36 "//components/guest_view/browser/test_guest_view_manager.h",
37 ] 37 ]
38 38
39 deps = [ 39 public_deps = [
40 ":browser", 40 ":browser",
41 "//content/test:test_support", 41 "//content/test:test_support",
42 ] 42 ]
43 } 43 }
44
45 source_set("unit_tests") {
46 testonly = true
47 sources = [
48 "guest_view_manager_unittest.cc",
49 ]
50 deps = [
51 ":test_support",
52 "//testing/gtest",
53 ]
54 }
OLDNEW
« no previous file with comments | « components/error_page/renderer/BUILD.gn ('k') | components/json_schema/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698