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

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

Issue 1974013002: Replace SkBitmap with gfx::Image in the ImageFetcher API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix iOS build errors. Created 4 years, 7 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 # GYP version: components/ntp_snippets.gypi:ntp_snippets 5 # GYP version: components/ntp_snippets.gypi:ntp_snippets
6 source_set("ntp_snippets") { 6 source_set("ntp_snippets") {
7 sources = [ 7 sources = [
8 "ntp_snippet.cc", 8 "ntp_snippet.cc",
9 "ntp_snippet.h", 9 "ntp_snippet.h",
10 "ntp_snippets_constants.cc", 10 "ntp_snippets_constants.cc",
(...skipping 19 matching lines...) Expand all
30 "//net", 30 "//net",
31 "//url", 31 "//url",
32 ] 32 ]
33 33
34 deps = [ 34 deps = [
35 "//components/data_use_measurement/core", 35 "//components/data_use_measurement/core",
36 "//components/image_fetcher", 36 "//components/image_fetcher",
37 "//components/metrics", 37 "//components/metrics",
38 "//components/variations", 38 "//components/variations",
39 "//third_party/icu/", 39 "//third_party/icu/",
40 "//ui/gfx/",
Marc Treib 2016/05/13 15:54:00 Does the trailing slash do anything? Most of the d
markusheintz_ 2016/05/17 13:08:22 TBH I don't know. Removed the trailing slash
40 ] 41 ]
41 } 42 }
42 43
43 source_set("unit_tests") { 44 source_set("unit_tests") {
44 testonly = true 45 testonly = true
45 sources = [ 46 sources = [
46 "ntp_snippets_fetcher_unittest.cc", 47 "ntp_snippets_fetcher_unittest.cc",
47 "ntp_snippets_service_unittest.cc", 48 "ntp_snippets_service_unittest.cc",
48 ] 49 ]
49 50
50 deps = [ 51 deps = [
51 ":ntp_snippets", 52 ":ntp_snippets",
52 "//base", 53 "//base",
53 "//base/test:test_support", 54 "//base/test:test_support",
54 "//components/image_fetcher", 55 "//components/image_fetcher",
55 "//components/signin/core/browser:test_support", 56 "//components/signin/core/browser:test_support",
56 "//net:test_support", 57 "//net:test_support",
57 "//testing/gtest", 58 "//testing/gtest",
58 "//third_party/icu/", 59 "//third_party/icu/",
59 ] 60 ]
60 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698