| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
| 6 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni") |
| 7 | 7 |
| 8 source_set("cpp") { | 8 source_set("cpp") { |
| 9 sources = [ | 9 sources = [ |
| 10 "resource_loader.cc", | 10 "resource_loader.cc", |
| 11 "resource_loader.h", | 11 "resource_loader.h", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 "../interfaces", | 15 "../interfaces", |
| 16 "//base", | 16 "//base", |
| 17 "//mojo/application/public/cpp:application", | 17 "//mojo/application/public/cpp", |
| 18 "//mojo/application/public/interfaces", | 18 "//mojo/application/public/interfaces", |
| 19 "//mojo/common", | 19 "//mojo/common", |
| 20 "//mojo/platform_handle", | 20 "//mojo/platform_handle", |
| 21 "//third_party/mojo/src/mojo/public/cpp/bindings", | 21 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 22 "//third_party/mojo/src/mojo/public/cpp/system", | 22 "//third_party/mojo/src/mojo/public/cpp/system", |
| 23 ] | 23 ] |
| 24 } | 24 } |
| OLD | NEW |