| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/offline_pages:offline_pages | 8 # GN: //components/offline_pages:offline_pages |
| 9 'target_name': 'offline_pages', | 9 'target_name': 'offline_pages', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 # GN version: //components/offline_pages:test_support | 78 # GN version: //components/offline_pages:test_support |
| 79 'target_name': 'offline_pages_test_support', | 79 'target_name': 'offline_pages_test_support', |
| 80 'type': 'static_library', | 80 'type': 'static_library', |
| 81 'dependencies': [ | 81 'dependencies': [ |
| 82 '../base/base.gyp:base', | 82 '../base/base.gyp:base', |
| 83 '../testing/gtest.gyp:gtest', | 83 '../testing/gtest.gyp:gtest', |
| 84 '../url/url.gyp:url_lib', | 84 '../url/url.gyp:url_lib', |
| 85 'offline_pages', | 85 'offline_pages', |
| 86 ], | 86 ], |
| 87 'sources': [ | 87 'sources': [ |
| 88 'offline_pages/offline_page_test_archiver.cc', |
| 88 'offline_pages/offline_page_test_archiver.h', | 89 'offline_pages/offline_page_test_archiver.h', |
| 89 'offline_pages/offline_page_test_archiver.cc', | 90 'offline_pages/offline_page_test_store.cc', |
| 90 'offline_pages/offline_page_test_store.h', | 91 'offline_pages/offline_page_test_store.h', |
| 91 'offline_pages/offline_page_test_store.cc', | 92 'offline_pages/stub_offline_page_model.cc', |
| 93 'offline_pages/stub_offline_page_model.h', |
| 92 ], | 94 ], |
| 93 }, | 95 }, |
| 94 ], | 96 ], |
| 95 'conditions': [ | 97 'conditions': [ |
| 96 ['OS == "android"', { | 98 ['OS == "android"', { |
| 97 'targets': [ | 99 'targets': [ |
| 98 { | 100 { |
| 99 # GN: //components/offline_pages:offline_page_model_enums_java | 101 # GN: //components/offline_pages:offline_page_model_enums_java |
| 100 'target_name': 'offline_page_model_enums_java', | 102 'target_name': 'offline_page_model_enums_java', |
| 101 'type': 'none', | 103 'type': 'none', |
| 102 'variables': { | 104 'variables': { |
| 103 'source_file': 'offline_pages/offline_page_types.h', | 105 'source_file': 'offline_pages/offline_page_types.h', |
| 104 }, | 106 }, |
| 105 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 107 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 106 }, | 108 }, |
| 107 ], | 109 ], |
| 108 }], | 110 }], |
| 109 ], | 111 ], |
| 110 } | 112 } |
| OLD | NEW |