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 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 sources -= [ "image_store_util.cc" ] | 66 sources -= [ "image_store_util.cc" ] |
67 } | 67 } |
68 } | 68 } |
69 | 69 |
70 if (is_android) { | 70 if (is_android) { |
71 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_java_enums_srcj
ar | 71 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_java_enums_srcj
ar |
72 java_cpp_enum("enhanced_bookmarks_java_enums_srcjar") { | 72 java_cpp_enum("enhanced_bookmarks_java_enums_srcjar") { |
73 sources = [ | 73 sources = [ |
74 "enhanced_bookmark_utils.h", | 74 "enhanced_bookmark_utils.h", |
75 ] | 75 ] |
76 outputs = [ | |
77 "org/chromium/chrome/browser/enhancedbookmarks/LaunchLocation.java", | |
78 ] | |
79 } | 76 } |
80 } | 77 } |
81 | 78 |
82 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support | 79 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support |
83 source_set("test_support") { | 80 source_set("test_support") { |
84 testonly = true | 81 testonly = true |
85 sources = [ | 82 sources = [ |
86 "test_image_store.cc", | 83 "test_image_store.cc", |
87 "test_image_store.h", | 84 "test_image_store.h", |
88 ] | 85 ] |
(...skipping 17 matching lines...) Expand all Loading... |
106 ] | 103 ] |
107 deps = [ | 104 deps = [ |
108 ":test_support", | 105 ":test_support", |
109 "//base", | 106 "//base", |
110 "//components/bookmarks/browser", | 107 "//components/bookmarks/browser", |
111 "//components/bookmarks/test", | 108 "//components/bookmarks/test", |
112 "//components/enhanced_bookmarks/proto", | 109 "//components/enhanced_bookmarks/proto", |
113 "//sql", | 110 "//sql", |
114 ] | 111 ] |
115 } | 112 } |
OLD | NEW |