Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 476 'shell/android/java/org/chromium/content_shell/ShellView.java', | 476 'shell/android/java/org/chromium/content_shell/ShellView.java', |
| 477 ], | 477 ], |
| 478 'jni_headers': [ | 478 'jni_headers': [ |
| 479 '<(SHARED_INTERMEDIATE_DIR)/content/shell/jni/shell_manager_jni.h' , | 479 '<(SHARED_INTERMEDIATE_DIR)/content/shell/jni/shell_manager_jni.h' , |
| 480 '<(SHARED_INTERMEDIATE_DIR)/content/shell/jni/shell_view_jni.h', | 480 '<(SHARED_INTERMEDIATE_DIR)/content/shell/jni/shell_view_jni.h', |
| 481 ], | 481 ], |
| 482 }, | 482 }, |
| 483 'includes': [ '../build/jni_generator.gypi' ], | 483 'includes': [ '../build/jni_generator.gypi' ], |
| 484 }, | 484 }, |
| 485 { | 485 { |
| 486 'target_name': 'content_shell_content_view', | 486 'target_name': 'libcontent_shell_content_view', |
|
Yaron
2012/06/22 18:02:33
How do you plan to reconcile this with downstream?
| |
| 487 'type': 'shared_library', | 487 'type': 'shared_library', |
| 488 'dependencies': [ | 488 'dependencies': [ |
| 489 'content_shell_jni_headers', | 489 'content_shell_jni_headers', |
| 490 'content_shell_lib', | 490 'content_shell_lib', |
| 491 'content_shell_pak', | 491 'content_shell_pak', |
| 492 # Skia is necessary to ensure the dependencies needed by | 492 # Skia is necessary to ensure the dependencies needed by |
| 493 # WebContents are included. | 493 # WebContents are included. |
| 494 '../skia/skia.gyp:skia', | 494 '../skia/skia.gyp:skia', |
| 495 '<(DEPTH)/media/media.gyp:player_android', | 495 '<(DEPTH)/media/media.gyp:player_android', |
| 496 ], | 496 ], |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 573 '-buildfile', | 573 '-buildfile', |
| 574 '<(DEPTH)/content/shell/android/content_shell_apk.xml', | 574 '<(DEPTH)/content/shell/android/content_shell_apk.xml', |
| 575 ] | 575 ] |
| 576 } | 576 } |
| 577 ], | 577 ], |
| 578 }, | 578 }, |
| 579 ], | 579 ], |
| 580 }], # OS=="android" | 580 }], # OS=="android" |
| 581 ] | 581 ] |
| 582 } | 582 } |
| OLD | NEW |