| 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 '../google_apis/google_apis.gyp:google_apis', | 15 '../google_apis/google_apis.gyp:google_apis', |
| 16 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
| 17 '../sql/sql.gyp:sql', | 17 '../sql/sql.gyp:sql', |
| 18 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
| 19 '../url/url.gyp:url_lib', | 19 '../url/url.gyp:url_lib', |
| 20 'bookmarks_browser', | 20 'bookmarks_browser', |
| 21 'enhanced_bookmarks_proto', | 21 'enhanced_bookmarks_proto', |
| 22 'keyed_service_core', | 22 'keyed_service_core', |
| 23 'signin_core_browser', | 23 'signin_core_browser', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'enhanced_bookmarks/bookmark_image_service.cc', | 26 'enhanced_bookmarks/bookmark_image_service.cc', |
| 27 'enhanced_bookmarks/bookmark_image_service.h', | 27 'enhanced_bookmarks/bookmark_image_service.h', |
| 28 'enhanced_bookmarks/bookmark_server_cluster_service.cc', |
| 29 'enhanced_bookmarks/bookmark_server_cluster_service.h', |
| 28 'enhanced_bookmarks/bookmark_server_search_service.cc', | 30 'enhanced_bookmarks/bookmark_server_search_service.cc', |
| 29 'enhanced_bookmarks/bookmark_server_search_service.h', | 31 'enhanced_bookmarks/bookmark_server_search_service.h', |
| 30 'enhanced_bookmarks/bookmark_server_service.cc', | 32 'enhanced_bookmarks/bookmark_server_service.cc', |
| 31 'enhanced_bookmarks/bookmark_server_service.h', | 33 'enhanced_bookmarks/bookmark_server_service.h', |
| 32 'enhanced_bookmarks/enhanced_bookmark_model.cc', | 34 'enhanced_bookmarks/enhanced_bookmark_model.cc', |
| 33 'enhanced_bookmarks/enhanced_bookmark_model.h', | 35 'enhanced_bookmarks/enhanced_bookmark_model.h', |
| 34 'enhanced_bookmarks/enhanced_bookmark_utils.cc', | 36 'enhanced_bookmarks/enhanced_bookmark_utils.cc', |
| 35 'enhanced_bookmarks/enhanced_bookmark_utils.h', | 37 'enhanced_bookmarks/enhanced_bookmark_utils.h', |
| 36 'enhanced_bookmarks/image_store.cc', | 38 'enhanced_bookmarks/image_store.cc', |
| 37 'enhanced_bookmarks/image_store.h', | 39 'enhanced_bookmarks/image_store.h', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 ], | 78 ], |
| 77 'sources': [ | 79 'sources': [ |
| 78 'enhanced_bookmarks/test_image_store.cc', | 80 'enhanced_bookmarks/test_image_store.cc', |
| 79 'enhanced_bookmarks/test_image_store.h', | 81 'enhanced_bookmarks/test_image_store.h', |
| 80 ], | 82 ], |
| 81 }, | 83 }, |
| 82 { | 84 { |
| 83 'target_name': 'enhanced_bookmarks_proto', | 85 'target_name': 'enhanced_bookmarks_proto', |
| 84 'type': 'static_library', | 86 'type': 'static_library', |
| 85 'sources': [ | 87 'sources': [ |
| 88 'enhanced_bookmarks/proto/cluster.proto', |
| 86 'enhanced_bookmarks/proto/metadata.proto', | 89 'enhanced_bookmarks/proto/metadata.proto', |
| 87 'enhanced_bookmarks/proto/search.proto', | 90 'enhanced_bookmarks/proto/search.proto', |
| 88 ], | 91 ], |
| 89 'variables': { | 92 'variables': { |
| 90 'proto_in_dir': './enhanced_bookmarks/proto', | 93 'proto_in_dir': './enhanced_bookmarks/proto', |
| 91 'proto_out_dir': 'components/enhanced_bookmarks/proto', | 94 'proto_out_dir': 'components/enhanced_bookmarks/proto', |
| 92 }, | 95 }, |
| 93 'includes': [ '../build/protoc.gypi' ], | 96 'includes': [ '../build/protoc.gypi' ], |
| 94 }, | 97 }, |
| 95 ], | 98 ], |
| (...skipping 19 matching lines...) Expand all Loading... |
| 115 ], | 118 ], |
| 116 'variables': { | 119 'variables': { |
| 117 'jni_gen_package': 'enhanced_bookmarks', | 120 'jni_gen_package': 'enhanced_bookmarks', |
| 118 }, | 121 }, |
| 119 'includes': [ '../build/jni_generator.gypi' ], | 122 'includes': [ '../build/jni_generator.gypi' ], |
| 120 }, | 123 }, |
| 121 ], | 124 ], |
| 122 }] | 125 }] |
| 123 ], | 126 ], |
| 124 } | 127 } |
| OLD | NEW |