| 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 30 matching lines...) Expand all Loading... |
| 41 # TODO(GYP) convert these dependencies. | 41 # TODO(GYP) convert these dependencies. |
| 42 #'../third_party/libjingle/libjingle.gyp:libjingle', | 42 #'../third_party/libjingle/libjingle.gyp:libjingle', |
| 43 #'../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', | 43 #'../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 if (!is_ios) { | 46 if (!is_ios) { |
| 47 deps += [ | 47 deps += [ |
| 48 "//ipc", | 48 "//ipc", |
| 49 "//gpu/command_buffer/client:gles2_c_lib", | 49 "//gpu/command_buffer/client:gles2_c_lib", |
| 50 "//gpu/command_buffer/client:gles2_implementation", | 50 "//gpu/command_buffer/client:gles2_implementation", |
| 51 "//mojo/public/interfaces/interface_provider", |
| 51 "//ui/gl", | 52 "//ui/gl", |
| 52 #'../cc/cc.gyp:cc', | 53 #'../cc/cc.gyp:cc', |
| 53 #'../gpu/gpu.gyp:command_buffer_service', | 54 #'../gpu/gpu.gyp:command_buffer_service', |
| 54 # TODO: the dependency on gl_in_process_context should be decoupled from | 55 # TODO: the dependency on gl_in_process_context should be decoupled from |
| 55 # content and moved to android_webview. See crbug.com/365797. | 56 # content and moved to android_webview. See crbug.com/365797. |
| 56 #'../gpu/gpu.gyp:gl_in_process_context', | 57 #'../gpu/gpu.gyp:gl_in_process_context', |
| 57 #'../gpu/gpu.gyp:gpu_ipc', | 58 #'../gpu/gpu.gyp:gpu_ipc', |
| 58 #'../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', | 59 #'../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', |
| 59 #'../media/media.gyp:media', | 60 #'../media/media.gyp:media', |
| 60 #'../media/media.gyp:shared_memory_support', | 61 #'../media/media.gyp:shared_memory_support', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 sources -= [ | 258 sources -= [ |
| 258 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", | 259 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", |
| 259 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", | 260 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", |
| 260 ] | 261 ] |
| 261 } | 262 } |
| 262 } | 263 } |
| 263 } | 264 } |
| 264 | 265 |
| 265 mojom("mojo_bindings") { | 266 mojom("mojo_bindings") { |
| 266 sources = [ | 267 sources = [ |
| 267 "web_ui_setup.mojom", | 268 "render_frame_setup.mojom", |
| 268 ] | 269 ] |
| 269 } | 270 } |
| OLD | NEW |