Chromium Code Reviews| 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_client | |
| 9 'target_name': 'quirks_client', | |
| 10 'type': 'static_library', | |
| 11 'dependencies': [ | |
| 12 '../base/base.gyp:base', | |
| 13 '../base/base.gyp:base_prefs', | |
|
Greg Levin
2016/02/09 18:56:38
TODO in next patch
| |
| 14 '../content/content.gyp:content_browser', | |
| 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/quirks_client_export.h', | |
| 29 'quirks_client/quirks_client_manager.cc', | |
| 30 'quirks_client/quirks_client_manager.h', | |
| 31 'quirks_client/switches.cc', | |
| 32 'quirks_client/switches.h', | |
| 33 ], | |
| 34 }, | |
| 35 ], | |
| 36 } | |
| OLD | NEW |