| 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 'content_shell_pak', | 556 'content_shell_pak', |
| 557 # Skia is necessary to ensure the dependencies needed by | 557 # Skia is necessary to ensure the dependencies needed by |
| 558 # WebContents are included. | 558 # WebContents are included. |
| 559 '../skia/skia.gyp:skia', | 559 '../skia/skia.gyp:skia', |
| 560 '<(DEPTH)/media/media.gyp:player_android', | 560 '<(DEPTH)/media/media.gyp:player_android', |
| 561 ], | 561 ], |
| 562 'include_dirs': [ | 562 'include_dirs': [ |
| 563 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 563 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
| 564 ], | 564 ], |
| 565 'sources': [ | 565 'sources': [ |
| 566 'shell/android/draw_context.cc', | |
| 567 'shell/android/draw_context.h', | |
| 568 'shell/android/shell_library_loader.cc', | 566 'shell/android/shell_library_loader.cc', |
| 569 'shell/android/shell_library_loader.h', | 567 'shell/android/shell_library_loader.h', |
| 570 'shell/android/shell_manager.cc', | 568 'shell/android/shell_manager.cc', |
| 571 'shell/android/shell_manager.h', | 569 'shell/android/shell_manager.h', |
| 572 ], | 570 ], |
| 573 'sources!': [ | 571 'sources!': [ |
| 574 'shell/shell_main.cc', | 572 'shell/shell_main.cc', |
| 575 'shell/shell_main.h', | 573 'shell/shell_main.h', |
| 576 ], | 574 ], |
| 577 'conditions': [ | 575 'conditions': [ |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 'dependencies': [ | 661 'dependencies': [ |
| 664 'content_java', | 662 'content_java', |
| 665 ], | 663 ], |
| 666 } | 664 } |
| 667 ], | 665 ], |
| 668 }, | 666 }, |
| 669 ], | 667 ], |
| 670 }], # OS=="android" | 668 }], # OS=="android" |
| 671 ] | 669 ] |
| 672 } | 670 } |
| OLD | NEW |