Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 1 | # 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 Lerman | 2150a7b | 2014-11-14 21:49:31 +0100 | [diff] [blame] | 5 | import("//mojo/public/mojo_application.gni") |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 6 | |
Przemyslaw Pietrzkiewicz | 84b510d | 2015-06-01 19:05:15 +0200 | [diff] [blame] | 7 | mojo_native_application("debugger") { |
| 8 | output_name = "debugger" |
Eric Seidel | dadb7ec | 2015-01-29 11:25:58 -0800 | [diff] [blame] | 9 | |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 10 | sources = [ |
| 11 | "debugger.cc", |
Eric Seidel | dadb7ec | 2015-01-29 11:25:58 -0800 | [diff] [blame] | 12 | "trace_collector.cc", |
| 13 | "trace_collector.h", |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 14 | ] |
| 15 | |
| 16 | deps = [ |
| 17 | "//base", |
Eric Seidel | dadb7ec | 2015-01-29 11:25:58 -0800 | [diff] [blame] | 18 | "//base/allocator", |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 19 | "//mojo/application", |
James Robinson | 94ade6b | 2015-08-25 13:02:06 -0700 | [diff] [blame] | 20 | "//mojo/data_pipe_utils", |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 21 | "//mojo/public/cpp/bindings", |
Eric Seidel | dadb7ec | 2015-01-29 11:25:58 -0800 | [diff] [blame] | 22 | "//mojo/public/cpp/system", |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 23 | "//mojo/public/cpp/utility", |
Viet-Trung Luu | 84765c4 | 2015-10-10 01:07:51 -0700 | [diff] [blame] | 24 | "//mojo/services/http_server/cpp", |
| 25 | "//mojo/services/http_server/interfaces", |
Viet-Trung Luu | 2e11a3f | 2015-10-13 13:20:30 -0700 | [diff] [blame] | 26 | "//mojo/services/network/interfaces", |
Viet-Trung Luu | 0f4f3ba | 2015-10-10 01:08:40 -0700 | [diff] [blame] | 27 | "//mojo/services/tracing/interfaces", |
Viet-Trung Luu | 15a59a8 | 2015-10-10 01:11:00 -0700 | [diff] [blame] | 28 | "//mojo/services/window_manager/interfaces", |
Adam Barth | 06caa3d | 2014-10-23 11:15:41 -0700 | [diff] [blame] | 29 | ] |
| 30 | } |