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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 891493003: [Android] Upstreamed Stars UMA from iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN: //components/enhanced_bookmarks:enhanced_bookmarks 8 # GN: //components/enhanced_bookmarks:enhanced_bookmarks
9 'target_name': 'enhanced_bookmarks', 9 'target_name': 'enhanced_bookmarks',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ], 55 ],
56 'conditions': [ 56 'conditions': [
57 ['OS=="ios"', { 57 ['OS=="ios"', {
58 'sources!': [ 58 'sources!': [
59 'enhanced_bookmarks/image_store_util.cc', 59 'enhanced_bookmarks/image_store_util.cc',
60 ], 60 ],
61 }], 61 }],
62 ], 62 ],
63 }, 63 },
64 { 64 {
65 'conditions': [
66 ['OS=="android"', {
67 # GN: //chrome/android:chrome_android_java_enums_srcjar
68 'target_name': 'enhanced_bookmarks_launch_location_java',
69 'type': 'none',
70 'variables': {
71 'source_file': 'enhanced_bookmarks/enhanced_bookmark_utils.h',
72 },
73 'includes': [ '../build/android/java_cpp_enum.gypi' ],
74 }],
75 ],
76 },
77 {
65 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_test_support 78 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_test_support
66 'target_name': 'enhanced_bookmarks_test_support', 79 'target_name': 'enhanced_bookmarks_test_support',
67 'type': 'static_library', 80 'type': 'static_library',
68 'include_dirs': [ 81 'include_dirs': [
69 '..', 82 '..',
70 ], 83 ],
71 'dependencies': [ 84 'dependencies': [
72 '../testing/gtest.gyp:gtest', 85 '../testing/gtest.gyp:gtest',
73 'enhanced_bookmarks', 86 'enhanced_bookmarks',
74 ], 87 ],
(...skipping 11 matching lines...) Expand all
86 'enhanced_bookmarks/proto/search.proto', 99 'enhanced_bookmarks/proto/search.proto',
87 ], 100 ],
88 'variables': { 101 'variables': {
89 'proto_in_dir': './enhanced_bookmarks/proto', 102 'proto_in_dir': './enhanced_bookmarks/proto',
90 'proto_out_dir': 'components/enhanced_bookmarks/proto', 103 'proto_out_dir': 'components/enhanced_bookmarks/proto',
91 }, 104 },
92 'includes': [ '../build/protoc.gypi' ], 105 'includes': [ '../build/protoc.gypi' ],
93 }, 106 },
94 ], 107 ],
95 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698