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

Side by Side Diff: content/content_shell.gypi

Issue 10798010: Uses gyp "rules" rather than "actions" templates for the JNI generator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo on content_jni.gypi Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/content_jni.gypi ('k') | content/shell/android/shell_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 }, # target content_shell_helper_app 496 }, # target content_shell_helper_app
497 ], 497 ],
498 }], # OS=="mac" 498 }], # OS=="mac"
499 ['OS=="android"', { 499 ['OS=="android"', {
500 'targets': [ 500 'targets': [
501 { 501 {
502 # TODO(jrg): Update this action and other jni generators to only 502 # TODO(jrg): Update this action and other jni generators to only
503 # require specifying the java directory and generate the rest. 503 # require specifying the java directory and generate the rest.
504 'target_name': 'content_shell_jni_headers', 504 'target_name': 'content_shell_jni_headers',
505 'type': 'none', 505 'type': 'none',
506 'sources': [
507 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ',
508 'shell/android/java/src/org/chromium/content_shell/Shell.java',
509 ],
506 'variables': { 510 'variables': {
507 'java_sources': [ 511 'jni_gen_dir': 'content/shell',
508 'shell/android/java/src/org/chromium/content_shell/ShellManager.ja va',
509 'shell/android/java/src/org/chromium/content_shell/Shell.java',
510 ],
511 'jni_headers': [
512 '<(SHARED_INTERMEDIATE_DIR)/content/shell/jni/shell_manager_jni.h' ,
513 '<(SHARED_INTERMEDIATE_DIR)/content/shell/jni/shell_jni.h',
514 ],
515 }, 512 },
516 'includes': [ '../build/jni_generator.gypi' ], 513 'includes': [ '../build/jni_generator.gypi' ],
517 }, 514 },
518 { 515 {
519 'target_name': 'libcontent_shell_content_view', 516 'target_name': 'libcontent_shell_content_view',
520 'type': 'shared_library', 517 'type': 'shared_library',
521 'dependencies': [ 518 'dependencies': [
522 'content_shell_jni_headers', 519 'content_shell_jni_headers',
523 'content_shell_lib', 520 'content_shell_lib',
524 'content_shell_pak', 521 'content_shell_pak',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 '-buildfile', 644 '-buildfile',
648 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 645 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
649 ] 646 ]
650 } 647 }
651 ], 648 ],
652 }, 649 },
653 ], 650 ],
654 }], # OS=="android" 651 }], # OS=="android"
655 ] 652 ]
656 } 653 }
OLDNEW
« no previous file with comments | « content/content_jni.gypi ('k') | content/shell/android/shell_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698