Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 static_library("discovery") { | 6 static_library("discovery") { |
| 7 inputs = [ | 7 inputs = [ |
| 8 "$root_gen_dir/chrome/grit/generated_resources.h", | 8 "$root_gen_dir/chrome/grit/generated_resources.h", |
| 9 ] | 9 ] |
| 10 deps = [ | 10 deps = [ |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 26 "dial/dial_media_sink_service.h", | 26 "dial/dial_media_sink_service.h", |
| 27 "dial/dial_registry.cc", | 27 "dial/dial_registry.cc", |
| 28 "dial/dial_registry.h", | 28 "dial/dial_registry.h", |
| 29 "dial/dial_service.cc", | 29 "dial/dial_service.cc", |
| 30 "dial/dial_service.h", | 30 "dial/dial_service.h", |
| 31 "dial/parsed_dial_device_description.cc", | 31 "dial/parsed_dial_device_description.cc", |
| 32 "dial/parsed_dial_device_description.h", | 32 "dial/parsed_dial_device_description.h", |
| 33 "dial/safe_dial_device_description_parser.cc", | 33 "dial/safe_dial_device_description_parser.cc", |
| 34 "dial/safe_dial_device_description_parser.h", | 34 "dial/safe_dial_device_description_parser.h", |
| 35 ] | 35 ] |
| 36 | |
| 37 if (!is_android) { | |
| 38 sources += [ | |
| 39 "discovery_network_info.cpp", | |
| 40 "discovery_network_info.h", | |
| 41 "discovery_network_list.h", | |
| 42 "discovery_network_list_posix.cc", | |
|
imcheng
2017/05/26 23:49:00
It seems we should put platform specific files int
btolsch
2017/05/30 09:54:29
Files like *_posix.cc are filtered out by sources_
imcheng
2017/05/31 21:19:55
Ah ok. I didn't know about source_assignment_filte
| |
| 43 "discovery_network_list_wifi.h", | |
| 44 "discovery_network_list_wifi_linux.cc", | |
| 45 "discovery_network_monitor.cc", | |
| 46 "discovery_network_monitor.h", | |
| 47 ] | |
| 48 } | |
| 36 } | 49 } |
| OLD | NEW |