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

Side by Side Diff: mojo/mojo_public.gyp

Issue 1811853004: Mojo C++ bindigns: fix generated namespace when variant is specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing new file Created 4 years, 9 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 { 5 {
6 'includes': [ 6 'includes': [
7 'mojo_variables.gypi', 7 'mojo_variables.gypi',
8 ], 8 ],
9 'target_defaults' : { 9 'target_defaults' : {
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 'type': 'static_library', 501 'type': 'static_library',
502 'variables': { 502 'variables': {
503 'mojom_variant': 'blink', 503 'mojom_variant': 'blink',
504 'for_blink': 'true', 504 'for_blink': 'true',
505 }, 505 },
506 'sources': [ 506 'sources': [
507 'public/interfaces/bindings/tests/test_wtf_types.mojom', 507 'public/interfaces/bindings/tests/test_wtf_types.mojom',
508 ], 508 ],
509 'includes': [ 'mojom_bindings_generator.gypi' ], 509 'includes': [ 'mojom_bindings_generator.gypi' ],
510 }, 510 },
511 {
512 'target_name': 'mojo_public_test_variant',
513 'type': 'static_library',
514 'variables': {
515 'mojom_variant': 'test_variant',
516 },
517 'sources': [
518 'public/interfaces/bindings/tests/test_variant.mojom',
519 ],
520 'includes': [ 'mojom_bindings_generator.gypi' ],
521 },
511 ], 522 ],
512 'conditions': [ 523 'conditions': [
513 ['OS == "android"', { 524 ['OS == "android"', {
514 'targets': [ 525 'targets': [
515 { 526 {
516 # GN version: //mojo/public/java:system 527 # GN version: //mojo/public/java:system
517 'target_name': 'mojo_public_java', 528 'target_name': 'mojo_public_java',
518 'type': 'none', 529 'type': 'none',
519 'variables': { 530 'variables': {
520 'chromium_code': 0, 531 'chromium_code': 0,
(...skipping 20 matching lines...) Expand all
541 'mojo_interface_bindings_java_sources', 552 'mojo_interface_bindings_java_sources',
542 'mojo_public_java', 553 'mojo_public_java',
543 '<(DEPTH)/base/base.gyp:base_java', 554 '<(DEPTH)/base/base.gyp:base_java',
544 ], 555 ],
545 'includes': [ '../build/java.gypi' ], 556 'includes': [ '../build/java.gypi' ],
546 }, 557 },
547 ], 558 ],
548 }], 559 }],
549 ], 560 ],
550 } 561 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698