| 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/component_updater | 8 # GN version: //components/component_updater |
| 9 'target_name': 'component_updater', | 9 'target_name': 'component_updater', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../courgette/courgette.gyp:courgette_lib', | 13 '../courgette/courgette.gyp:courgette_lib', |
| 14 '../crypto/crypto.gyp:crypto', | 14 '../crypto/crypto.gyp:crypto', |
| 15 '../third_party/libxml/libxml.gyp:libxml', | 15 '../third_party/libxml/libxml.gyp:libxml', |
| 16 '../third_party/zlib/google/zip.gyp:zip', | 16 '../third_party/zlib/google/zip.gyp:zip', |
| 17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
| 18 '../ui/base/ui_base.gyp:ui_base', | 18 '../ui/base/ui_base.gyp:ui_base', |
| 19 '../url/url.gyp:url_lib', |
| 19 'crx_file', | 20 'crx_file', |
| 20 'omaha_client', | 21 'omaha_client', |
| 21 ], | 22 ], |
| 22 'include_dirs': [ | 23 'include_dirs': [ |
| 23 '..', | 24 '..', |
| 24 ], | 25 ], |
| 25 'sources': [ | 26 'sources': [ |
| 26 'component_updater/background_downloader_win.cc', | 27 'component_updater/background_downloader_win.cc', |
| 27 'component_updater/background_downloader_win.h', | 28 'component_updater/background_downloader_win.h', |
| 28 'component_updater/component_patcher.cc', | 29 'component_updater/component_patcher.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'component_updater/test/test_configurator.cc', | 73 'component_updater/test/test_configurator.cc', |
| 73 'component_updater/test/test_configurator.h', | 74 'component_updater/test/test_configurator.h', |
| 74 'component_updater/test/test_installer.cc', | 75 'component_updater/test/test_installer.cc', |
| 75 'component_updater/test/test_installer.h', | 76 'component_updater/test/test_installer.h', |
| 76 'component_updater/test/url_request_post_interceptor.cc', | 77 'component_updater/test/url_request_post_interceptor.cc', |
| 77 'component_updater/test/url_request_post_interceptor.h', | 78 'component_updater/test/url_request_post_interceptor.h', |
| 78 ], | 79 ], |
| 79 }, | 80 }, |
| 80 ], | 81 ], |
| 81 } | 82 } |
| OLD | NEW |