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

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: addressed GN nits and fixed gyp 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'enhanced_bookmarks/proto/metadata.proto', 85 'enhanced_bookmarks/proto/metadata.proto',
86 'enhanced_bookmarks/proto/search.proto', 86 'enhanced_bookmarks/proto/search.proto',
87 ], 87 ],
88 'variables': { 88 'variables': {
89 'proto_in_dir': './enhanced_bookmarks/proto', 89 'proto_in_dir': './enhanced_bookmarks/proto',
90 'proto_out_dir': 'components/enhanced_bookmarks/proto', 90 'proto_out_dir': 'components/enhanced_bookmarks/proto',
91 }, 91 },
92 'includes': [ '../build/protoc.gypi' ], 92 'includes': [ '../build/protoc.gypi' ],
93 }, 93 },
94 ], 94 ],
95 'conditions' : [
96 ['OS=="android"', {
97 'targets': [
98 {
99 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_launch_locati on_java
100 'target_name': 'enhanced_bookmarks_launch_location_java',
101 'type': 'none',
102 'variables': {
103 'source_file': 'enhanced_bookmarks/enhanced_bookmark_utils.h',
104 },
105 'includes': [ '../build/android/java_cpp_enum.gypi' ],
106 },
107 ],
108 },
109 ],
110 ],
95 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698