OLD | NEW |
---|---|
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) { | |
6 import("//build/config/android/config.gni") | |
7 import("//build/config/android/rules.gni") | |
8 } | |
9 | |
5 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks | 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks |
6 source_set("enhanced_bookmarks") { | 11 source_set("enhanced_bookmarks") { |
7 sources = [ | 12 sources = [ |
8 "bookmark_image_service.cc", | 13 "bookmark_image_service.cc", |
9 "bookmark_image_service.h", | 14 "bookmark_image_service.h", |
10 "bookmark_server_cluster_service.cc", | 15 "bookmark_server_cluster_service.cc", |
11 "bookmark_server_cluster_service.h", | 16 "bookmark_server_cluster_service.h", |
12 "bookmark_server_search_service.cc", | 17 "bookmark_server_search_service.cc", |
13 "bookmark_server_search_service.h", | 18 "bookmark_server_search_service.h", |
14 "bookmark_server_service.cc", | 19 "bookmark_server_service.cc", |
(...skipping 27 matching lines...) Expand all Loading... | |
42 "//sql", | 47 "//sql", |
43 "//ui/gfx", | 48 "//ui/gfx", |
44 "//url", | 49 "//url", |
45 ] | 50 ] |
46 | 51 |
47 if (is_ios) { | 52 if (is_ios) { |
48 sources -= [ "image_store_util.cc" ] | 53 sources -= [ "image_store_util.cc" ] |
49 } | 54 } |
50 } | 55 } |
51 | 56 |
57 if (is_android) { | |
58 # GYP: //components/enhanced_bookmarks.enhanced_bookmarks_launch_location_java | |
cjhopman
2015/02/04 22:00:04
nit: s/marks.enhanced/marks.gypi:enhanced/
Kibeom Kim (inactive)
2015/02/04 22:06:55
Done.
| |
59 java_cpp_enum("enhanced_bookmarks_launch_location_java") { | |
60 sources = [ | |
61 "enhanced_bookmark_utils.h", | |
62 ] | |
63 outputs = [ | |
64 "org/chromium/chrome/browser/enhancedbookmark/LaunchLocation.java", | |
65 ] | |
66 } | |
67 } | |
68 | |
52 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support | 69 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support |
53 source_set("test_support") { | 70 source_set("test_support") { |
54 testonly = true | 71 testonly = true |
55 sources = [ | 72 sources = [ |
56 "test_image_store.cc", | 73 "test_image_store.cc", |
57 "test_image_store.h", | 74 "test_image_store.h", |
58 ] | 75 ] |
59 | 76 |
60 deps = [ | 77 deps = [ |
61 ":enhanced_bookmarks", | 78 ":enhanced_bookmarks", |
62 "//skia", | 79 "//skia", |
63 "//testing/gtest", | 80 "//testing/gtest", |
64 ] | 81 ] |
65 } | 82 } |
OLD | NEW |