| 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) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks | 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks |
| 11 source_set("enhanced_bookmarks") { | 11 source_set("enhanced_bookmarks") { |
| 12 sources = [ | 12 sources = [ |
| 13 "bookmark_server_cluster_service.cc", | 13 "bookmark_server_cluster_service.cc", |
| 14 "bookmark_server_cluster_service.h", | 14 "bookmark_server_cluster_service.h", |
| 15 "bookmark_server_service.cc", | 15 "bookmark_server_service.cc", |
| 16 "bookmark_server_service.h", | 16 "bookmark_server_service.h", |
| 17 "enhanced_bookmark_features.cc", | |
| 18 "enhanced_bookmark_features.h", | |
| 19 "enhanced_bookmark_model.cc", | 17 "enhanced_bookmark_model.cc", |
| 20 "enhanced_bookmark_model.h", | 18 "enhanced_bookmark_model.h", |
| 21 "enhanced_bookmark_model_observer.h", | 19 "enhanced_bookmark_model_observer.h", |
| 22 "enhanced_bookmark_switches.cc", | |
| 23 "enhanced_bookmark_switches.h", | |
| 24 "enhanced_bookmark_utils.cc", | 20 "enhanced_bookmark_utils.cc", |
| 25 "enhanced_bookmark_utils.h", | 21 "enhanced_bookmark_utils.h", |
| 26 "image_record.cc", | 22 "image_record.cc", |
| 27 "image_record.h", | 23 "image_record.h", |
| 28 "image_store.cc", | 24 "image_store.cc", |
| 29 "image_store.h", | 25 "image_store.h", |
| 30 "image_store_util.cc", | 26 "image_store_util.cc", |
| 31 "image_store_util.h", | 27 "image_store_util.h", |
| 32 "image_store_util_ios.mm", | 28 "image_store_util_ios.mm", |
| 33 "item_position.cc", | 29 "item_position.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 55 "//net", | 51 "//net", |
| 56 "//skia", | 52 "//skia", |
| 57 "//sql", | 53 "//sql", |
| 58 "//ui/base", | 54 "//ui/base", |
| 59 "//ui/gfx", | 55 "//ui/gfx", |
| 60 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
| 61 "//url", | 57 "//url", |
| 62 ] | 58 ] |
| 63 | 59 |
| 64 if (is_ios) { | 60 if (is_ios) { |
| 61 sources += [ |
| 62 "enhanced_bookmark_features.cc", |
| 63 "enhanced_bookmark_features.h", |
| 64 "enhanced_bookmark_switches.cc", |
| 65 "enhanced_bookmark_switches.h", |
| 66 ] |
| 65 sources -= [ "image_store_util.cc" ] | 67 sources -= [ "image_store_util.cc" ] |
| 66 } | 68 } |
| 67 } | 69 } |
| 68 | 70 |
| 69 if (is_android) { | 71 if (is_android) { |
| 70 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_java_enums_srcj
ar | 72 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_java_enums_srcj
ar |
| 71 java_cpp_enum("enhanced_bookmarks_java_enums_srcjar") { | 73 java_cpp_enum("enhanced_bookmarks_java_enums_srcjar") { |
| 72 sources = [ | 74 sources = [ |
| 73 "enhanced_bookmark_utils.h", | 75 "enhanced_bookmark_utils.h", |
| 74 ] | 76 ] |
| (...skipping 27 matching lines...) Expand all Loading... |
| 102 ] | 104 ] |
| 103 deps = [ | 105 deps = [ |
| 104 ":test_support", | 106 ":test_support", |
| 105 "//base", | 107 "//base", |
| 106 "//components/bookmarks/browser", | 108 "//components/bookmarks/browser", |
| 107 "//components/bookmarks/test", | 109 "//components/bookmarks/test", |
| 108 "//components/enhanced_bookmarks/proto", | 110 "//components/enhanced_bookmarks/proto", |
| 109 "//sql", | 111 "//sql", |
| 110 ] | 112 ] |
| 111 } | 113 } |
| OLD | NEW |