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 'target_name': 'enhanced_bookmarks', | 8 'target_name': 'enhanced_bookmarks', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '..', | 11 '..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../sql/sql.gyp:sql', | 15 '../sql/sql.gyp:sql', |
16 '../ui/gfx/gfx.gyp:gfx', | 16 '../ui/gfx/gfx.gyp:gfx', |
17 '../url/url.gyp:url_lib', | 17 '../url/url.gyp:url_lib', |
18 'enhanced_bookmarks_proto', | |
18 ], | 19 ], |
19 'sources': [ | 20 'sources': [ |
21 'enhanced_bookmarks/metadata_accessor.cc', | |
22 'enhanced_bookmarks/metadata_accessor.h', | |
Kibeom Kim (inactive)
2014/06/18 17:44:57
both lines below image_store_util.h?
noyau (Ping after 24h)
2014/06/19 09:07:00
Done.
| |
20 'enhanced_bookmarks/image_store.cc', | 23 'enhanced_bookmarks/image_store.cc', |
21 'enhanced_bookmarks/image_store.h', | 24 'enhanced_bookmarks/image_store.h', |
22 'enhanced_bookmarks/image_store_util.cc', | 25 'enhanced_bookmarks/image_store_util.cc', |
23 'enhanced_bookmarks/image_store_util.h', | 26 'enhanced_bookmarks/image_store_util.h', |
24 'enhanced_bookmarks/persistent_image_store.cc', | 27 'enhanced_bookmarks/persistent_image_store.cc', |
25 'enhanced_bookmarks/persistent_image_store.h', | 28 'enhanced_bookmarks/persistent_image_store.h', |
26 ], | 29 ], |
27 'conditions': [ | 30 'conditions': [ |
28 ['OS=="ios"', { | 31 ['OS=="ios"', { |
29 'sources!': [ | 32 'sources!': [ |
(...skipping 10 matching lines...) Expand all Loading... | |
40 ], | 43 ], |
41 'dependencies': [ | 44 'dependencies': [ |
42 '../testing/gtest.gyp:gtest', | 45 '../testing/gtest.gyp:gtest', |
43 'enhanced_bookmarks', | 46 'enhanced_bookmarks', |
44 ], | 47 ], |
45 'sources': [ | 48 'sources': [ |
46 'enhanced_bookmarks/test_image_store.cc', | 49 'enhanced_bookmarks/test_image_store.cc', |
47 'enhanced_bookmarks/test_image_store.h', | 50 'enhanced_bookmarks/test_image_store.h', |
48 ], | 51 ], |
49 }, | 52 }, |
53 { | |
54 'target_name': 'enhanced_bookmarks_proto', | |
55 'type': 'static_library', | |
56 'sources': [ | |
57 'enhanced_bookmarks/proto/metadata.proto', | |
58 ], | |
59 'variables': { | |
60 'proto_in_dir': './enhanced_bookmarks/proto', | |
61 'proto_out_dir': 'components/enhanced_bookmarks/proto', | |
62 }, | |
63 'includes': [ '../build/protoc.gypi' ], | |
64 }, | |
50 ], | 65 ], |
51 } | 66 } |
OLD | NEW |