| 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', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 'app/mac/mac_init.h', | 33 'app/mac/mac_init.h', |
| 34 'app/mojo/mojo_init.cc', | 34 'app/mojo/mojo_init.cc', |
| 35 'app/mojo/mojo_init.h', | 35 'app/mojo/mojo_init.h', |
| 36 'public/app/content_jni_onload.h', | 36 'public/app/content_jni_onload.h', |
| 37 'public/app/content_main.h', | 37 'public/app/content_main.h', |
| 38 'public/app/content_main_delegate.cc', | 38 'public/app/content_main_delegate.cc', |
| 39 'public/app/content_main_delegate.h', | 39 'public/app/content_main_delegate.h', |
| 40 'public/app/content_main_runner.h', | 40 'public/app/content_main_runner.h', |
| 41 ], | 41 ], |
| 42 'conditions': [ | 42 'conditions': [ |
| 43 ['((OS=="linux" and os_posix==1 and use_aura==1) or OS=="android") and use_a
llocator!="none"', { | |
| 44 'dependencies': [ | |
| 45 # This is needed by app/content_main_runner.cc | |
| 46 '../base/allocator/allocator.gyp:allocator', | |
| 47 ], | |
| 48 }], | |
| 49 ['OS=="android"', { | 43 ['OS=="android"', { |
| 50 'sources!': [ | 44 'sources!': [ |
| 51 'app/content_main.cc', | 45 'app/content_main.cc', |
| 52 ], | 46 ], |
| 53 'dependencies': [ | 47 'dependencies': [ |
| 54 'content.gyp:content_jni_headers', | 48 'content.gyp:content_jni_headers', |
| 55 '../build/android/ndk.gyp:cpu_features', | 49 '../build/android/ndk.gyp:cpu_features', |
| 56 '../skia/skia.gyp:skia', | 50 '../skia/skia.gyp:skia', |
| 57 '../ui/android/ui_android.gyp:ui_android', | 51 '../ui/android/ui_android.gyp:ui_android', |
| 58 ], | 52 ], |
| 59 }], | 53 }], |
| 60 ['OS=="win"', { | 54 ['OS=="win"', { |
| 61 'dependencies': [ | 55 'dependencies': [ |
| 62 'content.gyp:sandbox_helper_win', | 56 'content.gyp:sandbox_helper_win', |
| 63 ], | 57 ], |
| 64 }], | 58 }], |
| 65 ], | 59 ], |
| 66 } | 60 } |
| OLD | NEW |