OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 import("../../mojo_sdk.gni") | 5 import("../../mojo_sdk.gni") |
6 | 6 |
7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base | 7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base |
8 mojo_sdk_source_set("application") { | 8 mojo_sdk_source_set("application") { |
9 sources = [ | 9 sources = [ |
10 "application_connection.h", | 10 "application_connection.h", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 public_deps = [ | 77 public_deps = [ |
78 ":test_support", | 78 ":test_support", |
79 ] | 79 ] |
80 | 80 |
81 deps = [ | 81 deps = [ |
82 ":application", | 82 ":application", |
83 ] | 83 ] |
84 | 84 |
85 mojo_sdk_deps = [ | 85 mojo_sdk_deps = [ |
| 86 "mojo/public/interfaces/application", |
86 "mojo/public/cpp/environment:standalone", | 87 "mojo/public/cpp/environment:standalone", |
87 "mojo/public/cpp/system", | 88 "mojo/public/cpp/system", |
88 "mojo/public/cpp/utility", | 89 "mojo/public/cpp/utility", |
89 "mojo/public/interfaces/application", | 90 "mojo/public/interfaces/application", |
90 ] | 91 ] |
91 } | 92 } |
OLD | NEW |