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 { | 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 Loading... | |
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: //components/enhanced_bookmarks: | |
cjhopman
2015/02/04 22:00:04
nit: s/marks:/marks:enhanced_bookmarks_launch_loca
Kibeom Kim (inactive)
2015/02/04 22:06:55
Done.
| |
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 Loading... | |
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 } |
OLD | NEW |