Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2385)

Unified Diff: remoting/client/BUILD.gn

Issue 2273383002: Cleaning up remoting GN build files. Condense the sources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up remoting GN build files. Condense the sources. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/client/BUILD.gn
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
index 389da69d46f4e9d03b0b493991e86737e20083c5..22bf5af3d12265deafce20fb87bc05b87ceeb81d 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -2,15 +2,49 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//remoting/remoting_srcs.gni")
-
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 = rebase_path(remoting_srcs_gypi_values.remoting_client_sources,
- ".",
- "//remoting")
+
+ sources = [
+ "audio_consumer.h",
+ "audio_decode_scheduler.cc",
+ "audio_decode_scheduler.h",
+ "audio_player.cc",
+ "audio_player.h",
+ "chromoting_client.cc",
+ "chromoting_client.h",
+ "client_context.cc",
+ "client_context.h",
+ "client_status_logger.cc",
+ "client_status_logger.h",
+ "client_telemetry_logger.cc",
+ "client_telemetry_logger.h",
+ "client_user_interface.h",
+ "cursor_shape_stub_proxy.cc",
+ "cursor_shape_stub_proxy.h",
+ "dual_buffer_frame_consumer.cc",
+ "dual_buffer_frame_consumer.h",
+ "empty_cursor_filter.cc",
+ "empty_cursor_filter.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",
+ "server_log_entry_client.h",
+ "software_video_renderer.cc",
+ "software_video_renderer.h",
+ "touch_input_scaler.cc",
+ "touch_input_scaler.h",
+ ]
set_sources_assignment_filter(sources_assignment_filter)
configs += [
@@ -34,18 +68,34 @@ static_library("client") {
"server_log_entry_client.cc",
]
} else {
- sources += rebase_path(
- remoting_srcs_gypi_values.remoting_client_standalone_sources,
- ".",
- "//remoting")
+ sources += [
+ "chromoting_client_runtime.cc",
+ "chromoting_client_runtime.h",
+ ]
}
}
source_set("opengl_renderer") {
- sources =
- rebase_path(remoting_srcs_gypi_values.remoting_opengl_renderer_sources,
- ".",
- "//remoting")
+ sources = [
+ "gl_canvas.cc",
+ "gl_canvas.h",
+ "gl_cursor.cc",
+ "gl_cursor.h",
+ "gl_cursor_feedback.cc",
+ "gl_cursor_feedback.h",
+ "gl_cursor_feedback_texture.cc",
+ "gl_cursor_feedback_texture.h",
+ "gl_desktop.cc",
+ "gl_desktop.h",
+ "gl_helpers.cc",
+ "gl_helpers.h",
+ "gl_math.cc",
+ "gl_math.h",
+ "gl_render_layer.cc",
+ "gl_render_layer.h",
+ "gl_renderer.cc",
+ "gl_renderer.h",
+ ]
deps = [
"//remoting/proto",

Powered by Google App Engine
This is Rietveld 408576698