blob: ebf0d42ce6bf8c65faf3c963109141930a17e3ad [file] [log] [blame]
Adam Barth06caa3d2014-10-23 11:15:41 -07001# Copyright 2014 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
Benjamin Lerman2150a7b2014-11-14 21:49:31 +01005import("//mojo/public/mojo_application.gni")
Adam Barth06caa3d2014-10-23 11:15:41 -07006
Przemyslaw Pietrzkiewicz84b510d2015-06-01 19:05:15 +02007mojo_native_application("debugger") {
8 output_name = "debugger"
Eric Seideldadb7ec2015-01-29 11:25:58 -08009
Adam Barth06caa3d2014-10-23 11:15:41 -070010 sources = [
11 "debugger.cc",
Eric Seideldadb7ec2015-01-29 11:25:58 -080012 "trace_collector.cc",
13 "trace_collector.h",
Adam Barth06caa3d2014-10-23 11:15:41 -070014 ]
15
16 deps = [
17 "//base",
Eric Seideldadb7ec2015-01-29 11:25:58 -080018 "//base/allocator",
Adam Barth06caa3d2014-10-23 11:15:41 -070019 "//mojo/application",
James Robinson94ade6b2015-08-25 13:02:06 -070020 "//mojo/data_pipe_utils",
Adam Barth06caa3d2014-10-23 11:15:41 -070021 "//mojo/public/cpp/bindings",
Eric Seideldadb7ec2015-01-29 11:25:58 -080022 "//mojo/public/cpp/system",
Adam Barth06caa3d2014-10-23 11:15:41 -070023 "//mojo/public/cpp/utility",
Viet-Trung Luu84765c42015-10-10 01:07:51 -070024 "//mojo/services/http_server/cpp",
25 "//mojo/services/http_server/interfaces",
Viet-Trung Luu2e11a3f2015-10-13 13:20:30 -070026 "//mojo/services/network/interfaces",
Viet-Trung Luu0f4f3ba2015-10-10 01:08:40 -070027 "//mojo/services/tracing/interfaces",
Viet-Trung Luu15a59a82015-10-10 01:11:00 -070028 "//mojo/services/window_manager/interfaces",
Adam Barth06caa3d2014-10-23 11:15:41 -070029 ]
30}