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

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

Issue 1143153010: [Android] Add enhanced bookmarks grid/list view experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn fix Created 5 years, 6 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
« no previous file with comments | « components/enhanced_bookmarks.gypi ('k') | components/enhanced_bookmarks/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "//ui/gfx", 52 "//ui/gfx",
53 "//url", 53 "//url",
54 ] 54 ]
55 55
56 if (is_ios) { 56 if (is_ios) {
57 sources -= [ "image_store_util.cc" ] 57 sources -= [ "image_store_util.cc" ]
58 } 58 }
59 } 59 }
60 60
61 if (is_android) { 61 if (is_android) {
62 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_launch_location _srcjar 62 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_java_enums_srcj ar
63 java_cpp_enum("enhanced_bookmarks_launch_location_srcjar") { 63 java_cpp_enum("enhanced_bookmarks_java_enums_srcjar") {
64 sources = [ 64 sources = [
65 "enhanced_bookmark_utils.h", 65 "enhanced_bookmark_utils.h",
66 ] 66 ]
67 outputs = [ 67 outputs = [
68 "org/chromium/chrome/browser/enhanced_bookmarks/LaunchLocation.java", 68 "org/chromium/chrome/browser/enhanced_bookmarks/LaunchLocation.java",
69 "org/chromium/chrome/browser/enhanced_bookmarks/ViewMode.java",
69 ] 70 ]
70 } 71 }
71 } 72 }
72 73
73 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support 74 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks_test_support
74 source_set("test_support") { 75 source_set("test_support") {
75 testonly = true 76 testonly = true
76 sources = [ 77 sources = [
77 "test_image_store.cc", 78 "test_image_store.cc",
78 "test_image_store.h", 79 "test_image_store.h",
79 ] 80 ]
80 81
81 deps = [ 82 deps = [
82 ":enhanced_bookmarks", 83 ":enhanced_bookmarks",
83 "//skia", 84 "//skia",
84 "//testing/gtest", 85 "//testing/gtest",
85 ] 86 ]
86 } 87 }
OLDNEW
« no previous file with comments | « components/enhanced_bookmarks.gypi ('k') | components/enhanced_bookmarks/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698