| 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 'include_dirs': [ | 6 'include_dirs': [ |
| 7 '..', | 7 '..', |
| 8 ], | 8 ], |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
| 11 '../base/base.gyp:base_i18n', | 11 '../base/base.gyp:base_i18n', |
| 12 '../crypto/crypto.gyp:crypto', | 12 '../crypto/crypto.gyp:crypto', |
| 13 '../ui/ui.gyp:ui', | 13 '../ui/ui.gyp:ui', |
| 14 ], | 14 ], |
| 15 'sources': [ | 15 'sources': [ |
| 16 'app/android/browser_process_main.cc', |
| 17 'app/android/browser_process_main.h', |
| 16 'app/android/content_jni_registrar.cc', | 18 'app/android/content_jni_registrar.cc', |
| 17 'app/android/content_jni_registrar.h', | 19 'app/android/content_jni_registrar.h', |
| 20 'app/android/content_main.cc', |
| 21 'app/android/content_main.h', |
| 18 'app/android/library_loader_hooks.cc', | 22 'app/android/library_loader_hooks.cc', |
| 19 'app/content_main.cc', | 23 'app/content_main.cc', |
| 20 'app/content_main_runner.cc', | 24 'app/content_main_runner.cc', |
| 21 'app/startup_helper_win.cc', | 25 'app/startup_helper_win.cc', |
| 22 'public/app/android_library_loader_hooks.h', | 26 'public/app/android_library_loader_hooks.h', |
| 23 'public/app/content_main.h', | 27 'public/app/content_main.h', |
| 24 'public/app/content_main_delegate.cc', | 28 'public/app/content_main_delegate.cc', |
| 25 'public/app/content_main_delegate.h', | 29 'public/app/content_main_delegate.h', |
| 26 'public/app/content_main_runner.h', | 30 'public/app/content_main_runner.h', |
| 27 'public/app/startup_helper_win.h', | 31 'public/app/startup_helper_win.h', |
| 28 ], | 32 ], |
| 29 'conditions': [ | 33 'conditions': [ |
| 30 ['OS=="win"', { | 34 ['OS=="win"', { |
| 31 'dependencies': [ | 35 'dependencies': [ |
| 32 '../sandbox/sandbox.gyp:sandbox', | 36 '../sandbox/sandbox.gyp:sandbox', |
| 33 ], | 37 ], |
| 34 }], | 38 }], |
| 39 ['OS=="android"', { |
| 40 'source!': [ |
| 41 'app/content_main.cc', |
| 42 ], |
| 43 'include_dirs': [ |
| 44 '<(SHARED_INTERMEDIATE_DIR)/content', |
| 45 ], |
| 46 'dependencies': [ |
| 47 'content.gyp:content_jni_headers', |
| 48 ], |
| 49 }], |
| 35 ], | 50 ], |
| 36 } | 51 } |
| OLD | NEW |