Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1342)

Side by Side Diff: shell/BUILD.gn

Issue 1288583002: Add MGL entry points and port spinning_cube to use them (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix android build Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 import("//mojo/public/mojo.gni") 6 import("//mojo/public/mojo.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//mojo/tools/embed/rules.gni") 9 import("//mojo/tools/embed/rules.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 "native_application_support.h", 209 "native_application_support.h",
210 ] 210 ]
211 211
212 public_deps = [ 212 public_deps = [
213 "//mojo/public/cpp/bindings", 213 "//mojo/public/cpp/bindings",
214 ] 214 ]
215 215
216 deps = [ 216 deps = [
217 "//base", 217 "//base",
218 "//mojo/gles2", 218 "//mojo/gles2",
219 "//mojo/gles2:mgl",
219 ] 220 ]
220 221
221 # This target has to include the public thunk headers, which generally 222 # This target has to include the public thunk headers, which generally
222 # shouldn't be included without picking an implementation. We are providing 223 # shouldn't be included without picking an implementation. We are providing
223 # the implementation but the thunk header target cannot declare that we are 224 # the implementation but the thunk header target cannot declare that we are
224 # permitted to include it since it's in the public SDK and we are not. 225 # permitted to include it since it's in the public SDK and we are not.
225 # Suppress include checking so we can still check the rest of the targets in 226 # Suppress include checking so we can still check the rest of the targets in
226 # this file. 227 # this file.
227 check_includes = false 228 check_includes = false
228 } 229 }
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 "${root_out_dir}/libmojo_shell.so", 605 "${root_out_dir}/libmojo_shell.so",
605 ] 606 ]
606 } else { 607 } else {
607 sources += [ "${root_out_dir}/mojo_shell" ] 608 sources += [ "${root_out_dir}/mojo_shell" ]
608 } 609 }
609 610
610 outputs = [ 611 outputs = [
611 "${root_out_dir}/symbols/{{source_file_part}}", 612 "${root_out_dir}/symbols/{{source_file_part}}",
612 ] 613 ]
613 } 614 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698