| 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/google/core/browser |
| 8 'target_name': 'google_core_browser', | 9 'target_name': 'google_core_browser', |
| 9 'type': 'static_library', | 10 'type': 'static_library', |
| 10 'dependencies': [ | 11 'dependencies': [ |
| 11 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 12 '../net/net.gyp:net', | 13 '../net/net.gyp:net', |
| 13 '../ui/base/ui_base.gyp:ui_base', | 14 '../ui/base/ui_base.gyp:ui_base', |
| 14 '../url/url.gyp:url_lib', | 15 '../url/url.gyp:url_lib', |
| 15 'components_strings.gyp:components_strings', | 16 'components_strings.gyp:components_strings', |
| 16 'keyed_service_core', | 17 'keyed_service_core', |
| 17 'infobars_core', | 18 'infobars_core', |
| 18 'url_fixer', | 19 'url_fixer', |
| 19 ], | 20 ], |
| 20 'include_dirs': [ | 21 'include_dirs': [ |
| 21 '..', | 22 '..', |
| 22 ], | 23 ], |
| 23 'sources': [ | 24 'sources': [ |
| 25 # Note: sources duplicated in GN build. |
| 24 'google/core/browser/google_pref_names.cc', | 26 'google/core/browser/google_pref_names.cc', |
| 25 'google/core/browser/google_pref_names.h', | 27 'google/core/browser/google_pref_names.h', |
| 26 'google/core/browser/google_search_metrics.cc', | 28 'google/core/browser/google_search_metrics.cc', |
| 27 'google/core/browser/google_search_metrics.h', | 29 'google/core/browser/google_search_metrics.h', |
| 28 'google/core/browser/google_switches.cc', | 30 'google/core/browser/google_switches.cc', |
| 29 'google/core/browser/google_switches.h', | 31 'google/core/browser/google_switches.h', |
| 30 'google/core/browser/google_url_tracker.cc', | 32 'google/core/browser/google_url_tracker.cc', |
| 31 'google/core/browser/google_url_tracker.h', | 33 'google/core/browser/google_url_tracker.h', |
| 32 'google/core/browser/google_url_tracker_client.cc', | 34 'google/core/browser/google_url_tracker_client.cc', |
| 33 'google/core/browser/google_url_tracker_client.h', | 35 'google/core/browser/google_url_tracker_client.h', |
| 34 'google/core/browser/google_url_tracker_infobar_delegate.cc', | 36 'google/core/browser/google_url_tracker_infobar_delegate.cc', |
| 35 'google/core/browser/google_url_tracker_infobar_delegate.h', | 37 'google/core/browser/google_url_tracker_infobar_delegate.h', |
| 36 'google/core/browser/google_url_tracker_map_entry.cc', | 38 'google/core/browser/google_url_tracker_map_entry.cc', |
| 37 'google/core/browser/google_url_tracker_map_entry.h', | 39 'google/core/browser/google_url_tracker_map_entry.h', |
| 38 'google/core/browser/google_url_tracker_navigation_helper.cc', | 40 'google/core/browser/google_url_tracker_navigation_helper.cc', |
| 39 'google/core/browser/google_url_tracker_navigation_helper.h', | 41 'google/core/browser/google_url_tracker_navigation_helper.h', |
| 40 'google/core/browser/google_util.cc', | 42 'google/core/browser/google_util.cc', |
| 41 'google/core/browser/google_util.h', | 43 'google/core/browser/google_util.h', |
| 42 ], | 44 ], |
| 43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 45 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 44 'msvs_disabled_warnings': [4267, ], | 46 'msvs_disabled_warnings': [4267, ], |
| 45 }, | 47 }, |
| 46 ], | 48 ], |
| 47 } | 49 } |
| OLD | NEW |