OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN version: //components/quirks |
| 9 'target_name': 'quirks', |
| 10 'type': '<(component)', |
| 11 'dependencies': [ |
| 12 '../base/base.gyp:base', |
| 13 '../components/prefs/prefs.gyp:prefs', |
| 14 '../net/net.gyp:net', |
| 15 '../url/url.gyp:url_lib', |
| 16 'version_info', |
| 17 ], |
| 18 'include_dirs': [ |
| 19 '..', |
| 20 ], |
| 21 'defines': [ |
| 22 'QUIRKS_IMPLEMENTATION', |
| 23 ], |
| 24 'sources': [ |
| 25 # Note: sources list duplicated in GN build. |
| 26 'quirks/pref_names.cc', |
| 27 'quirks/pref_names.h', |
| 28 'quirks/quirks_client.cc', |
| 29 'quirks/quirks_client.h', |
| 30 'quirks/quirks_export.h', |
| 31 'quirks/quirks_manager.cc', |
| 32 'quirks/quirks_manager.h', |
| 33 'quirks/switches.cc', |
| 34 'quirks/switches.h', |
| 35 ], |
| 36 }, |
| 37 ], |
| 38 } |
OLD | NEW |