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

Side by Side Diff: components/sessions/BUILD.gn

Issue 1232343006: components: Fix 'gn check' errors for omnibox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix link failure of components_unittests Created 5 years, 5 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/omnibox/browser/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 } 7 }
8 8
9 config("implementation") { 9 config("implementation") {
10 defines = [ "SESSIONS_IMPLEMENTATION" ] 10 defines = [ "SESSIONS_IMPLEMENTATION" ]
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 ":shared", 44 ":shared",
45 "//base", 45 "//base",
46 46
47 # '../ios/web/ios_web.gyp:ios_web', TODO(GYP) iOS. 47 # '../ios/web/ios_web.gyp:ios_web', TODO(GYP) iOS.
48 ] 48 ]
49 } 49 }
50 } 50 }
51 51
52 # Sources shared between the content and iOS implementations. 52 # Sources shared between the content and iOS implementations.
53 source_set("shared") { 53 source_set("shared") {
54 visibility = [ ":*" ]
55
56 sources = [ 54 sources = [
57 "base_session_service.cc", 55 "base_session_service.cc",
58 "base_session_service.h", 56 "base_session_service.h",
59 "base_session_service_commands.cc", 57 "base_session_service_commands.cc",
60 "base_session_service_commands.h", 58 "base_session_service_commands.h",
61 "base_session_service_delegate.h", 59 "base_session_service_delegate.h",
62 "core/serialized_navigation_driver.h", 60 "core/serialized_navigation_driver.h",
63 "serialized_navigation_entry.cc", 61 "serialized_navigation_entry.cc",
64 "serialized_navigation_entry.h", 62 "serialized_navigation_entry.h",
65 "session_backend.cc", 63 "session_backend.cc",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "session_types_unittest.cc", 118 "session_types_unittest.cc",
121 ] 119 ]
122 deps = [ 120 deps = [
123 ":sessions", 121 ":sessions",
124 "//base/test:test_support", 122 "//base/test:test_support",
125 "//testing/gtest", 123 "//testing/gtest",
126 "//third_party/protobuf:protobuf_lite", 124 "//third_party/protobuf:protobuf_lite",
127 ] 125 ]
128 } 126 }
129 } 127 }
OLDNEW
« no previous file with comments | « components/omnibox/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698