| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 source_set("common") { | 10 source_set("common") { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "//ipc", | 49 "//ipc", |
| 50 "//mojo/environment:chromium", | 50 "//mojo/environment:chromium", |
| 51 "//mojo/system", | 51 "//mojo/system", |
| 52 # TODO: the dependency on gl_in_process_context should be decoupled from | 52 # TODO: the dependency on gl_in_process_context should be decoupled from |
| 53 # content and moved to android_webview. See crbug.com/365797. | 53 # content and moved to android_webview. See crbug.com/365797. |
| 54 "//gpu/command_buffer/client:gl_in_process_context", | 54 "//gpu/command_buffer/client:gl_in_process_context", |
| 55 "//gpu/command_buffer/client:gles2_c_lib", | 55 "//gpu/command_buffer/client:gles2_c_lib", |
| 56 "//gpu/command_buffer/client:gles2_implementation", | 56 "//gpu/command_buffer/client:gles2_implementation", |
| 57 "//gpu/command_buffer/service", | 57 "//gpu/command_buffer/service", |
| 58 "//gpu/ipc", | 58 "//gpu/ipc", |
| 59 "//mojo/public/interfaces/interface_provider", | 59 "//mojo/public/interfaces/service_provider", |
| 60 "//ui/gl", | 60 "//ui/gl", |
| 61 "//webkit/browser:storage", | 61 "//webkit/browser:storage", |
| 62 "//webkit/common", | 62 "//webkit/common", |
| 63 "//webkit/common:storage", | 63 "//webkit/common:storage", |
| 64 "//webkit/common/gpu", | 64 "//webkit/common/gpu", |
| 65 #'../gpu/gpu.gyp:gl_in_process_context', | 65 #'../gpu/gpu.gyp:gl_in_process_context', |
| 66 #'../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', | 66 #'../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', |
| 67 #'../media/media.gyp:media', | 67 #'../media/media.gyp:media', |
| 68 #'../media/media.gyp:shared_memory_support', | 68 #'../media/media.gyp:shared_memory_support', |
| 69 #'../third_party/WebKit/public/blink.gyp:blink', | 69 #'../third_party/WebKit/public/blink.gyp:blink', |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 ] | 263 ] |
| 264 } | 264 } |
| 265 } | 265 } |
| 266 } | 266 } |
| 267 | 267 |
| 268 mojom("mojo_bindings") { | 268 mojom("mojo_bindings") { |
| 269 sources = [ | 269 sources = [ |
| 270 "render_frame_setup.mojom", | 270 "render_frame_setup.mojom", |
| 271 ] | 271 ] |
| 272 } | 272 } |
| OLD | NEW |