| 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/ui.gni") | 5 import("//build/config/ui.gni") | 
| 6 | 6 | 
| 7 source_set("gles2") { | 7 source_set("gles2") { | 
| 8   visibility = [ | 8   visibility = [ | 
| 9     "//components/mus:*", | 9     "//components/mus:*", | 
| 10     "//components/mus/ws:*", | 10     "//components/mus/ws:*", | 
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 46     "//mojo/public/cpp/bindings", | 46     "//mojo/public/cpp/bindings", | 
| 47     "//ui/gfx", | 47     "//ui/gfx", | 
| 48     "//ui/gfx/geometry", | 48     "//ui/gfx/geometry", | 
| 49     "//ui/gl", | 49     "//ui/gl", | 
| 50     "//ui/mojo/geometry:interfaces", | 50     "//ui/mojo/geometry:interfaces", | 
| 51   ] | 51   ] | 
| 52 | 52 | 
| 53   if (is_android) { | 53   if (is_android) { | 
| 54     deps += [ "//mojo/platform_handle:platform_handle_impl" ] | 54     deps += [ "//mojo/platform_handle:platform_handle_impl" ] | 
| 55   } else { | 55   } else { | 
| 56     deps += [ "//mojo/platform_handle:for_shared_library" ] | 56     deps += [ "//mojo/platform_handle" ] | 
| 57   } | 57   } | 
| 58 | 58 | 
| 59   if (use_ozone) { | 59   if (use_ozone) { | 
| 60     deps += [ "//ui/ozone:ozone" ] | 60     deps += [ "//ui/ozone:ozone" ] | 
| 61   } | 61   } | 
| 62 | 62 | 
| 63   include_dirs = [ "../.." ] | 63   include_dirs = [ "../.." ] | 
| 64 } | 64 } | 
| 65 | 65 | 
| 66 source_set("lib") { | 66 source_set("lib") { | 
| (...skipping 18 matching lines...) Expand all  Loading... | 
| 85     "//gpu/command_buffer/common", | 85     "//gpu/command_buffer/common", | 
| 86     "//gpu/config:config", | 86     "//gpu/config:config", | 
| 87     "//mojo/public/cpp/bindings", | 87     "//mojo/public/cpp/bindings", | 
| 88     "//mojo/public/cpp/system", | 88     "//mojo/public/cpp/system", | 
| 89     "//ui/gfx", | 89     "//ui/gfx", | 
| 90     "//ui/gfx/geometry", | 90     "//ui/gfx/geometry", | 
| 91   ] | 91   ] | 
| 92 | 92 | 
| 93   include_dirs = [ "../.." ] | 93   include_dirs = [ "../.." ] | 
| 94 } | 94 } | 
| OLD | NEW | 
|---|