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

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

Issue 391603002: components: Add GN build files for three more components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REBASE Created 6 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 | Annotate | Revision Log
« no previous file with comments | « components/bookmarks/browser/BUILD.gn ('k') | components/enhanced_bookmarks/proto/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
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("enhanced_bookmarks") {
6 sources = [
7 "image_store.cc",
8 "image_store.h",
9 "image_store_util.cc",
10 "image_store_util.h",
11 "image_store_util_ios.mm",
12 "metadata_accessor.cc",
13 "metadata_accessor.h",
14 "persistent_image_store.cc",
15 "persistent_image_store.h",
16 ]
17
18 deps = [
19 "//base",
20 "//components/bookmarks/browser",
21 "//components/enhanced_bookmarks/proto",
22 "//sql",
23 "//ui/gfx",
24 "//url",
25 ]
26
27 if (is_ios) {
28 sources -= [
29 "image_store_util.cc",
30 ]
31 }
32 }
33
34 source_set("test_support") {
35 sources = [
36 "test_image_store.cc",
37 "test_image_store.h",
38 ]
39
40 deps = [
41 ":enhanced_bookmarks",
42 "//skia",
43 "//testing/gtest",
44 ]
45 }
OLDNEW
« no previous file with comments | « components/bookmarks/browser/BUILD.gn ('k') | components/enhanced_bookmarks/proto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698