| 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("//third_party/mojo/src/mojo/public/mojo_sdk.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo_sdk.gni") |
| 6 | 6 |
| 7 mojo_sdk_source_set("cpp") { | 7 mojo_sdk_source_set("cpp") { |
| 8 restrict_external_deps = false | 8 restrict_external_deps = false |
| 9 sources = [ | 9 sources = [ |
| 10 "context_provider.h", | 10 "context_provider.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//mojo/services/network/public/interfaces", | 44 "//mojo/services/network/public/interfaces", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 "//base", | 48 "//base", |
| 49 "//cc", | 49 "//cc", |
| 50 "//cc/surfaces", | 50 "//cc/surfaces", |
| 51 "//cc/surfaces:surface_id", | 51 "//cc/surfaces:surface_id", |
| 52 "//mojo/application/public/cpp", | 52 "//mojo/application/public/cpp", |
| 53 "//mojo/application/public/interfaces", | 53 "//mojo/application/public/interfaces", |
| 54 "//mojo/converters/geometry", |
| 54 "//mojo/converters/surfaces", | 55 "//mojo/converters/surfaces", |
| 55 "//mojo/gles2:headers", | 56 "//mojo/gles2:headers", |
| 56 "//mojo/gpu:mojo_gles2_implementation", | 57 "//mojo/gpu:mojo_gles2_implementation", |
| 57 "//third_party/mojo/src/mojo/public/cpp/environment", | 58 "//third_party/mojo/src/mojo/public/cpp/environment", |
| 58 "//third_party/mojo/src/mojo/public/cpp/system", | 59 "//third_party/mojo/src/mojo/public/cpp/system", |
| 60 "//ui/gfx/geometry", |
| 59 "//ui/mojo/events:interfaces", | 61 "//ui/mojo/events:interfaces", |
| 60 "//ui/mojo/geometry:interfaces", | 62 "//ui/mojo/geometry:interfaces", |
| 61 ] | 63 ] |
| 62 | 64 |
| 63 mojo_sdk_deps = [ | 65 mojo_sdk_deps = [ |
| 64 "mojo/public/c/gles2:headers", | 66 "mojo/public/c/gles2:headers", |
| 65 "mojo/public/cpp/bindings:bindings", | 67 "mojo/public/cpp/bindings:bindings", |
| 66 "mojo/public/cpp/system", | 68 "mojo/public/cpp/system", |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 data_deps = [ | 71 data_deps = [ |
| 70 "//components/mus", | 72 "//components/mus", |
| 71 ] | 73 ] |
| 72 } | 74 } |
| 73 | 75 |
| 74 source_set("common") { | 76 source_set("common") { |
| 75 sources = [ | 77 sources = [ |
| 76 "args.h", | 78 "args.h", |
| 77 "keys.cc", | 79 "keys.cc", |
| 78 "keys.h", | 80 "keys.h", |
| 79 "lib/args.cc", | 81 "lib/args.cc", |
| 80 "types.h", | 82 "types.h", |
| 81 "util.h", | 83 "util.h", |
| 82 ] | 84 ] |
| 83 } | 85 } |
| OLD | NEW |