Chromium Code Reviews| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //mojo/public/c/system | 8 # GN version: //mojo/public/c/system |
| 9 'target_name': 'mojo_system', | 9 'target_name': 'mojo_system', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 79 'sources': [ | 79 'sources': [ |
| 80 'public/c/gles2/gles2.h', | 80 'public/c/gles2/gles2.h', |
| 81 'public/c/gles2/gles2_export.h', | 81 'public/c/gles2/gles2_export.h', |
| 82 'public/platform/native/gles2_thunks.cc', | 82 'public/platform/native/gles2_thunks.cc', |
| 83 'public/platform/native/gles2_thunks.h', | 83 'public/platform/native/gles2_thunks.h', |
| 84 'public/platform/native/gles2_impl_thunks.cc', | 84 'public/platform/native/gles2_impl_thunks.cc', |
| 85 'public/platform/native/gles2_impl_thunks.h', | 85 'public/platform/native/gles2_impl_thunks.h', |
| 86 'public/platform/native/gles2_impl_chromium_texture_mailbox_thunks.cc', | 86 'public/platform/native/gles2_impl_chromium_texture_mailbox_thunks.cc', |
| 87 'public/platform/native/gles2_impl_chromium_texture_mailbox_thunks.h', | 87 'public/platform/native/gles2_impl_chromium_texture_mailbox_thunks.h', |
| 88 'public/platform/native/gles2_impl_chromium_sync_point_thunks.cc', | 88 'public/platform/native/gles2_impl_chromium_sync_point_thunks.cc', |
| 89 'public/platform/native/gles2_impl_chromium_sync_point_thunks.h', | 89 'public/platform/native/gles2_impl_chcromium_sync_point_thunks.h', |
|
yzshen1
2014/08/20 23:04:25
This is probably not intended?
tim (not reviewing)
2014/08/20 23:26:12
oh no! thank you.
| |
| 90 ], | 90 ], |
| 91 }, | 91 }, |
| 92 { | 92 { |
| 93 # GN version: //mojo/public/cpp/bindings | 93 # GN version: //mojo/public/cpp/bindings |
| 94 'target_name': 'mojo_cpp_bindings', | 94 'target_name': 'mojo_cpp_bindings', |
| 95 'type': 'static_library', | 95 'type': 'static_library', |
| 96 'include_dirs': [ | 96 'include_dirs': [ |
| 97 '..' | 97 '..' |
| 98 ], | 98 ], |
| 99 'sources': [ | 99 'sources': [ |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 254 ], | 254 ], |
| 255 'export_dependent_settings': [ | 255 'export_dependent_settings': [ |
| 256 'mojo_application_bindings', | 256 'mojo_application_bindings', |
| 257 ], | 257 ], |
| 258 }, | 258 }, |
| 259 { | 259 { |
| 260 # GN version: //mojo/public/cpp/application:standalone" | 260 # GN version: //mojo/public/cpp/application:standalone" |
| 261 'target_name': 'mojo_application_standalone', | 261 'target_name': 'mojo_application_standalone', |
| 262 'type': 'static_library', | 262 'type': 'static_library', |
| 263 'sources': [ | 263 'sources': [ |
| 264 'public/cpp/application/lib/application_impl_standalone.cc', | 264 'public/cpp/application/lib/application_runner.cc', |
| 265 'public/cpp/application/application_runner.h', | |
| 265 ], | 266 ], |
| 266 'dependencies': [ | 267 'dependencies': [ |
| 267 'mojo_application_base', | 268 'mojo_application_base', |
| 269 'mojo_environment_standalone', | |
| 268 ], | 270 ], |
| 269 'export_dependent_settings': [ | 271 'export_dependent_settings': [ |
| 270 'mojo_application_base', | 272 'mojo_application_base', |
| 271 ], | 273 ], |
| 272 }, | 274 }, |
| 273 ], | 275 ], |
| 274 'conditions': [ | 276 'conditions': [ |
| 275 ['OS == "android"', { | 277 ['OS == "android"', { |
| 276 'targets': [ | 278 'targets': [ |
| 277 { | 279 { |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 292 }, | 294 }, |
| 293 'dependencies': [ | 295 'dependencies': [ |
| 294 'mojo_public_java', | 296 'mojo_public_java', |
| 295 ], | 297 ], |
| 296 'includes': [ '../build/java.gypi' ], | 298 'includes': [ '../build/java.gypi' ], |
| 297 }, | 299 }, |
| 298 ], | 300 ], |
| 299 }], | 301 }], |
| 300 ], | 302 ], |
| 301 } | 303 } |
| OLD | NEW |