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 'target_name': 'enhanced_bookmarks', | 9 'target_name': 'enhanced_bookmarks', |
9 'type': 'static_library', | 10 'type': 'static_library', |
10 'include_dirs': [ | 11 'include_dirs': [ |
11 '..', | 12 '..', |
12 ], | 13 ], |
13 'dependencies': [ | 14 'dependencies': [ |
14 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
15 '../google_apis/google_apis.gyp:google_apis', | 16 '../google_apis/google_apis.gyp:google_apis', |
16 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
17 '../sql/sql.gyp:sql', | 18 '../sql/sql.gyp:sql', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 ], | 53 ], |
53 'conditions': [ | 54 'conditions': [ |
54 ['OS=="ios"', { | 55 ['OS=="ios"', { |
55 'sources!': [ | 56 'sources!': [ |
56 'enhanced_bookmarks/image_store_util.cc', | 57 'enhanced_bookmarks/image_store_util.cc', |
57 ], | 58 ], |
58 }], | 59 }], |
59 ], | 60 ], |
60 }, | 61 }, |
61 { | 62 { |
| 63 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_test_support |
62 'target_name': 'enhanced_bookmarks_test_support', | 64 'target_name': 'enhanced_bookmarks_test_support', |
63 'type': 'static_library', | 65 'type': 'static_library', |
64 'include_dirs': [ | 66 'include_dirs': [ |
65 '..', | 67 '..', |
66 ], | 68 ], |
67 'dependencies': [ | 69 'dependencies': [ |
68 '../testing/gtest.gyp:gtest', | 70 '../testing/gtest.gyp:gtest', |
69 'enhanced_bookmarks', | 71 'enhanced_bookmarks', |
70 ], | 72 ], |
71 'sources': [ | 73 'sources': [ |
(...skipping 10 matching lines...) Expand all Loading... |
82 'enhanced_bookmarks/proto/search.proto', | 84 'enhanced_bookmarks/proto/search.proto', |
83 ], | 85 ], |
84 'variables': { | 86 'variables': { |
85 'proto_in_dir': './enhanced_bookmarks/proto', | 87 'proto_in_dir': './enhanced_bookmarks/proto', |
86 'proto_out_dir': 'components/enhanced_bookmarks/proto', | 88 'proto_out_dir': 'components/enhanced_bookmarks/proto', |
87 }, | 89 }, |
88 'includes': [ '../build/protoc.gypi' ], | 90 'includes': [ '../build/protoc.gypi' ], |
89 }, | 91 }, |
90 ], | 92 ], |
91 } | 93 } |
OLD | NEW |