OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN version: //components/quirks_client |
| 9 'target_name': 'quirks_client', |
| 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '../base/base.gyp:base', |
| 13 '../base/base.gyp:base_prefs', |
| 14 '../google_apis/google_apis.gyp:google_apis', |
| 15 ], |
| 16 'include_dirs': [ |
| 17 '..', |
| 18 ], |
| 19 'defines': [ |
| 20 'QUIRKS_CLIENT_IMPLEMENTATION', |
| 21 ], |
| 22 'sources': [ |
| 23 # Note: sources list duplicated in GN build. |
| 24 'quirks_client/pref_names.cc', |
| 25 'quirks_client/pref_names.h', |
| 26 'quirks_client/quirks_client.cc', |
| 27 'quirks_client/quirks_client.h', |
| 28 'quirks_client/switches.cc', |
| 29 'quirks_client/switches.h', |
| 30 ], |
| 31 }, |
| 32 ], |
| 33 } |
OLD | NEW |