| Index: remoting/client/BUILD.gn
|
| diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
|
| index aaa1443ac8a5d6457fac4b8b479e65391be88d10..ccfe218b2e0c0d23fab2173954cbefdd0693e7ec 100644
|
| --- a/remoting/client/BUILD.gn
|
| +++ b/remoting/client/BUILD.gn
|
| @@ -3,13 +3,11 @@
|
| # found in the LICENSE file.
|
|
|
| static_library("client") {
|
| - # Disabled the source filters because there are _mac files that need to
|
| - # be compiled on all platforms.
|
| - set_sources_assignment_filter([])
|
| -
|
| sources = [
|
| "audio_player.cc",
|
| "audio_player.h",
|
| + "audio_player_android.cc",
|
| + "audio_player_android.h",
|
| "chromoting_client.cc",
|
| "chromoting_client.h",
|
| "chromoting_session.cc",
|
| @@ -31,14 +29,6 @@ static_library("client") {
|
| "gesture_interpreter.h",
|
| "host_experiment_sender.cc",
|
| "host_experiment_sender.h",
|
| - "key_event_mapper.cc",
|
| - "key_event_mapper.h",
|
| - "normalizing_input_filter_cros.cc",
|
| - "normalizing_input_filter_cros.h",
|
| - "normalizing_input_filter_mac.cc",
|
| - "normalizing_input_filter_mac.h",
|
| - "normalizing_input_filter_win.cc",
|
| - "normalizing_input_filter_win.h",
|
| "queued_task_poster.cc",
|
| "queued_task_poster.h",
|
| "server_log_entry_client.cc",
|
| @@ -46,7 +36,6 @@ static_library("client") {
|
| "software_video_renderer.cc",
|
| "software_video_renderer.h",
|
| ]
|
| - set_sources_assignment_filter(sources_assignment_filter)
|
|
|
| configs += [
|
| "//build/config/compiler:wexit_time_destructors",
|
| @@ -80,10 +69,6 @@ static_library("client") {
|
| ]
|
| }
|
| if (is_android) {
|
| - sources += [
|
| - "audio_player_android.cc",
|
| - "audio_player_android.h",
|
| - ]
|
| libs += [
|
| "android",
|
| "OpenSLES",
|
| @@ -96,22 +81,16 @@ source_set("unit_tests") {
|
|
|
| # Disabled the source filters because there are _mac files that need to
|
| # be compiled on all platforms.
|
| - set_sources_assignment_filter([])
|
| sources = [
|
| "audio_player_unittest.cc",
|
| "chromoting_client_runtime_unittest.cc",
|
| "client_telemetry_logger_unittest.cc",
|
| "dual_buffer_frame_consumer_unittest.cc",
|
| "empty_cursor_filter_unittest.cc",
|
| - "key_event_mapper_unittest.cc",
|
| - "normalizing_input_filter_cros_unittest.cc",
|
| - "normalizing_input_filter_mac_unittest.cc",
|
| - "normalizing_input_filter_win_unittest.cc",
|
| "queued_task_poster_unittest.cc",
|
| "server_log_entry_client_unittest.cc",
|
| "software_video_renderer_unittest.cc",
|
| ]
|
| - set_sources_assignment_filter(sources_assignment_filter)
|
|
|
| configs += [
|
| "//remoting/build/config:version",
|
|
|