| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ], | 59 ], |
| 59 }], | 60 }], |
| 60 ['OS=="ios"', { | 61 ['OS=="ios"', { |
| 61 'sources!': [ | 62 'sources!': [ |
| 62 'enhanced_bookmarks/image_store_util.cc', | 63 'enhanced_bookmarks/image_store_util.cc', |
| 63 ], | 64 ], |
| 64 }], | 65 }], |
| 65 ], | 66 ], |
| 66 }, | 67 }, |
| 67 { | 68 { |
| 69 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_test_support |
| 68 'target_name': 'enhanced_bookmarks_test_support', | 70 'target_name': 'enhanced_bookmarks_test_support', |
| 69 'type': 'static_library', | 71 'type': 'static_library', |
| 70 'include_dirs': [ | 72 'include_dirs': [ |
| 71 '..', | 73 '..', |
| 72 ], | 74 ], |
| 73 'dependencies': [ | 75 'dependencies': [ |
| 74 '../testing/gtest.gyp:gtest', | 76 '../testing/gtest.gyp:gtest', |
| 75 'enhanced_bookmarks', | 77 'enhanced_bookmarks', |
| 76 ], | 78 ], |
| 77 'sources': [ | 79 'sources': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 90 'proto_in_dir': './enhanced_bookmarks/proto', | 92 'proto_in_dir': './enhanced_bookmarks/proto', |
| 91 'proto_out_dir': 'components/enhanced_bookmarks/proto', | 93 'proto_out_dir': 'components/enhanced_bookmarks/proto', |
| 92 }, | 94 }, |
| 93 'includes': [ '../build/protoc.gypi' ], | 95 'includes': [ '../build/protoc.gypi' ], |
| 94 }, | 96 }, |
| 95 ], | 97 ], |
| 96 'conditions' : [ | 98 'conditions' : [ |
| 97 ['OS=="android"', { | 99 ['OS=="android"', { |
| 98 'targets': [ | 100 'targets': [ |
| 99 { | 101 { |
| 102 # GN: //components/enhanced_bookmarks/android:enhanced_bookmarks_java |
| 100 'target_name': 'enhanced_bookmarks_java', | 103 'target_name': 'enhanced_bookmarks_java', |
| 101 'type': 'none', | 104 'type': 'none', |
| 102 'dependencies': [ | 105 'dependencies': [ |
| 103 'components.gyp:bookmarks_java' | 106 'components.gyp:bookmarks_java' |
| 104 ], | 107 ], |
| 105 'variables': { | 108 'variables': { |
| 106 'java_in_dir': 'enhanced_bookmarks/android/java', | 109 'java_in_dir': 'enhanced_bookmarks/android/java', |
| 107 }, | 110 }, |
| 108 'includes': [ '../build/java.gypi' ], | 111 'includes': [ '../build/java.gypi' ], |
| 109 }, | 112 }, |
| 110 { | 113 { |
| 114 # GN: //components/enhanced_bookmarks:jni_headers |
| 111 'target_name': 'enhanced_bookmarks_jni_headers', | 115 'target_name': 'enhanced_bookmarks_jni_headers', |
| 112 'type': 'none', | 116 'type': 'none', |
| 113 'sources': [ | 117 'sources': [ |
| 114 'enhanced_bookmarks/android/java/src/org/chromium/components/enhance
dbookmarks/EnhancedBookmarksBridge.java', | 118 'enhanced_bookmarks/android/java/src/org/chromium/components/enhance
dbookmarks/EnhancedBookmarksBridge.java', |
| 115 ], | 119 ], |
| 116 'variables': { | 120 'variables': { |
| 117 'jni_gen_package': 'enhanced_bookmarks', | 121 'jni_gen_package': 'enhanced_bookmarks', |
| 118 }, | 122 }, |
| 119 'includes': [ '../build/jni_generator.gypi' ], | 123 'includes': [ '../build/jni_generator.gypi' ], |
| 120 }, | 124 }, |
| 121 ], | 125 ], |
| 122 }] | 126 }] |
| 123 ], | 127 ], |
| 124 } | 128 } |
| OLD | NEW |