| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 assert(enable_nacl) | 7 assert(enable_nacl) |
| 8 | 8 |
| 9 source_set("renderer") { | 9 source_set("renderer") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "//components/nacl/common", | 38 "//components/nacl/common", |
| 39 "//components/nacl/renderer/plugin:nacl_trusted_plugin", | 39 "//components/nacl/renderer/plugin:nacl_trusted_plugin", |
| 40 "//content/public/common", | 40 "//content/public/common", |
| 41 "//content/public/renderer", | 41 "//content/public/renderer", |
| 42 "//ipc", | 42 "//ipc", |
| 43 "//net", | 43 "//net", |
| 44 "//ppapi/c", | 44 "//ppapi/c", |
| 45 "//ppapi/proxy:ipc", | 45 "//ppapi/proxy:ipc", |
| 46 "//ppapi/shared_impl", | 46 "//ppapi/shared_impl", |
| 47 "//third_party/WebKit/public:blink", | 47 "//third_party/WebKit/public:blink", |
| 48 "//v8", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| OLD | NEW |