| 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 version: //components/bookmarks/browser |
| 8 'target_name': 'bookmarks_browser', | 9 'target_name': 'bookmarks_browser', |
| 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 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
| 16 '../third_party/icu/icu.gyp:icuuc', | 17 '../third_party/icu/icu.gyp:icuuc', |
| 17 '../ui/base/ui_base.gyp:ui_base', | 18 '../ui/base/ui_base.gyp:ui_base', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'bookmarks/common/android/bookmark_id.cc', | 67 'bookmarks/common/android/bookmark_id.cc', |
| 67 'bookmarks/common/android/bookmark_id.h', | 68 'bookmarks/common/android/bookmark_id.h', |
| 68 'bookmarks/common/android/bookmark_type_list.h', | 69 'bookmarks/common/android/bookmark_type_list.h', |
| 69 'bookmarks/common/android/component_jni_registrar.cc', | 70 'bookmarks/common/android/component_jni_registrar.cc', |
| 70 'bookmarks/common/android/component_jni_registrar.h', | 71 'bookmarks/common/android/component_jni_registrar.h', |
| 71 ], | 72 ], |
| 72 }], | 73 }], |
| 73 ], | 74 ], |
| 74 }, | 75 }, |
| 75 { | 76 { |
| 77 # GN version: //components/bookmarks/common |
| 76 'target_name': 'bookmarks_common', | 78 'target_name': 'bookmarks_common', |
| 77 'type': 'static_library', | 79 'type': 'static_library', |
| 78 'include_dirs': [ | 80 'include_dirs': [ |
| 79 '..', | 81 '..', |
| 80 ], | 82 ], |
| 81 'dependencies': [ | 83 'dependencies': [ |
| 82 '../base/base.gyp:base', | 84 '../base/base.gyp:base', |
| 83 ], | 85 ], |
| 84 'sources': [ | 86 'sources': [ |
| 85 'bookmarks/common/bookmark_constants.cc', | 87 'bookmarks/common/bookmark_constants.cc', |
| 86 'bookmarks/common/bookmark_constants.h', | 88 'bookmarks/common/bookmark_constants.h', |
| 87 'bookmarks/common/bookmark_pref_names.cc', | 89 'bookmarks/common/bookmark_pref_names.cc', |
| 88 'bookmarks/common/bookmark_pref_names.h', | 90 'bookmarks/common/bookmark_pref_names.h', |
| 89 ], | 91 ], |
| 90 }, | 92 }, |
| 91 { | 93 { |
| 94 # GN version: //components/bookmarks/test |
| 92 'target_name': 'bookmarks_test_support', | 95 'target_name': 'bookmarks_test_support', |
| 93 'type': 'static_library', | 96 'type': 'static_library', |
| 94 'include_dirs': [ | 97 'include_dirs': [ |
| 95 '..', | 98 '..', |
| 96 ], | 99 ], |
| 97 'dependencies': [ | 100 'dependencies': [ |
| 98 '../base/base.gyp:base', | 101 '../base/base.gyp:base', |
| 99 '../testing/gmock.gyp:gmock', | 102 '../testing/gmock.gyp:gmock', |
| 100 '../ui/events/platform/events_platform.gyp:events_platform', | 103 '../ui/events/platform/events_platform.gyp:events_platform', |
| 101 '../url/url.gyp:url_lib', | 104 '../url/url.gyp:url_lib', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 'variables': { | 156 'variables': { |
| 154 'package_name': 'org/chromium/components/bookmarks', | 157 'package_name': 'org/chromium/components/bookmarks', |
| 155 'template_deps': ['bookmarks/common/android/bookmark_type_list.h'], | 158 'template_deps': ['bookmarks/common/android/bookmark_type_list.h'], |
| 156 }, | 159 }, |
| 157 'includes': [ '../build/android/java_cpp_template.gypi' ], | 160 'includes': [ '../build/android/java_cpp_template.gypi' ], |
| 158 }, | 161 }, |
| 159 ], | 162 ], |
| 160 }] | 163 }] |
| 161 ], | 164 ], |
| 162 } | 165 } |
| OLD | NEW |