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

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

Issue 2194433002: Zine: support multiple sections in the ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanups. Created 4 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
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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "//components/variations", 66 "//components/variations",
67 "//components/variations/net", 67 "//components/variations/net",
68 "//third_party/icu/", 68 "//third_party/icu/",
69 "//ui/gfx", 69 "//ui/gfx",
70 ] 70 ]
71 } 71 }
72 72
73 if (is_android) { 73 if (is_android) {
74 java_cpp_enum("ntp_snippets_java_enums_srcjar") { 74 java_cpp_enum("ntp_snippets_java_enums_srcjar") {
75 sources = [ 75 sources = [
76 "content_suggestions_category.h",
76 "content_suggestions_category_status.h", 77 "content_suggestions_category_status.h",
77 ] 78 ]
78 } 79 }
79 } 80 }
80 81
81 source_set("unit_tests") { 82 source_set("unit_tests") {
82 testonly = true 83 testonly = true
83 sources = [ 84 sources = [
84 "content_suggestions_service_unittest.cc", 85 "content_suggestions_service_unittest.cc",
85 "ntp_snippet_unittest.cc", 86 "ntp_snippet_unittest.cc",
(...skipping 14 matching lines...) Expand all
100 "//components/leveldb_proto:test_support", 101 "//components/leveldb_proto:test_support",
101 "//components/signin/core/browser:test_support", 102 "//components/signin/core/browser:test_support",
102 "//components/signin/core/common", 103 "//components/signin/core/common",
103 "//components/sync_driver:test_support", 104 "//components/sync_driver:test_support",
104 "//components/variations", 105 "//components/variations",
105 "//net:test_support", 106 "//net:test_support",
106 "//testing/gtest", 107 "//testing/gtest",
107 "//third_party/icu/", 108 "//third_party/icu/",
108 ] 109 ]
109 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698