| 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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 'content_shell_pak', | 568 'content_shell_pak', |
| 569 # Skia is necessary to ensure the dependencies needed by | 569 # Skia is necessary to ensure the dependencies needed by |
| 570 # WebContents are included. | 570 # WebContents are included. |
| 571 '../skia/skia.gyp:skia', | 571 '../skia/skia.gyp:skia', |
| 572 '<(DEPTH)/media/media.gyp:player_android', | 572 '<(DEPTH)/media/media.gyp:player_android', |
| 573 ], | 573 ], |
| 574 'include_dirs': [ | 574 'include_dirs': [ |
| 575 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 575 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
| 576 ], | 576 ], |
| 577 'sources': [ | 577 'sources': [ |
| 578 'shell/android/draw_context.cc', | |
| 579 'shell/android/draw_context.h', | |
| 580 'shell/android/shell_library_loader.cc', | 578 'shell/android/shell_library_loader.cc', |
| 581 'shell/android/shell_library_loader.h', | 579 'shell/android/shell_library_loader.h', |
| 582 'shell/android/shell_manager.cc', | 580 'shell/android/shell_manager.cc', |
| 583 'shell/android/shell_manager.h', | 581 'shell/android/shell_manager.h', |
| 584 ], | 582 ], |
| 585 'sources!': [ | 583 'sources!': [ |
| 586 'shell/shell_main.cc', | 584 'shell/shell_main.cc', |
| 587 'shell/shell_main.h', | 585 'shell/shell_main.h', |
| 588 ], | 586 ], |
| 589 'conditions': [ | 587 'conditions': [ |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 'dependencies': [ | 674 'dependencies': [ |
| 677 'content_java', | 675 'content_java', |
| 678 ], | 676 ], |
| 679 } | 677 } |
| 680 ], | 678 ], |
| 681 }, | 679 }, |
| 682 ], | 680 ], |
| 683 }], # OS=="android" | 681 }], # OS=="android" |
| 684 ] | 682 ] |
| 685 } | 683 } |
| OLD | NEW |