| 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/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//third_party/cython/rules.gni") | 7 import("//third_party/cython/rules.gni") |
| 8 | 8 |
| 9 mojo_native_application("content_handler") { | 9 mojo_native_application("content_handler") { |
| 10 output_name = "py_content_handler" | 10 output_name = "py_content_handler" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "//base", | 61 "//base", |
| 62 "//mojo/environment:chromium", | 62 "//mojo/environment:chromium", |
| 63 "//mojo/common", | 63 "//mojo/common", |
| 64 "//mojo/public/c/system:for_shared_library", | 64 "//mojo/public/c/system:for_shared_library", |
| 65 "//mojo/public/cpp/system", | 65 "//mojo/public/cpp/system", |
| 66 "//mojo/public/cpp/utility", | 66 "//mojo/public/cpp/utility", |
| 67 "//mojo/public/cpp/bindings:callback", | 67 "//mojo/public/cpp/bindings:callback", |
| 68 "//mojo/public/python:python_common", | 68 "//mojo/public/python:python_common", |
| 69 ] | 69 ] |
| 70 } | 70 } |
| OLD | NEW |