Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1003)

Side by Side Diff: base/base.gypi

Issue 10035034: Implement the skeleton of an android content shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed drawable png as it was checked in separately. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
11 # This part is shared between the targets defined below. 11 # This part is shared between the targets defined below.
12 ['base_target==1', { 12 ['base_target==1', {
13 'sources': [ 13 'sources': [
14 '../build/build_config.h', 14 '../build/build_config.h',
15 'third_party/dmg_fp/dmg_fp.h', 15 'third_party/dmg_fp/dmg_fp.h',
16 'third_party/dmg_fp/g_fmt.cc', 16 'third_party/dmg_fp/g_fmt.cc',
17 'third_party/dmg_fp/dtoa_wrapper.cc', 17 'third_party/dmg_fp/dtoa_wrapper.cc',
18 'third_party/icu/icu_utf.cc', 18 'third_party/icu/icu_utf.cc',
19 'third_party/icu/icu_utf.h', 19 'third_party/icu/icu_utf.h',
20 'third_party/nspr/prtime.cc', 20 'third_party/nspr/prtime.cc',
21 'third_party/nspr/prtime.h', 21 'third_party/nspr/prtime.h',
22 'third_party/nspr/prcpucfg_linux.h', 22 'third_party/nspr/prcpucfg_linux.h',
23 'third_party/xdg_mime/xdgmime.h', 23 'third_party/xdg_mime/xdgmime.h',
24 'android/base_jni_registrar.cc',
25 'android/base_jni_registrar.h',
24 'android/build_info.cc', 26 'android/build_info.cc',
25 'android/build_info.h', 27 'android/build_info.h',
26 'android/scoped_java_ref.cc', 28 'android/scoped_java_ref.cc',
27 'android/scoped_java_ref.h', 29 'android/scoped_java_ref.h',
28 'android/jni_android.cc', 30 'android/jni_android.cc',
29 'android/jni_android.h', 31 'android/jni_android.h',
30 'android/jni_array.cc', 32 'android/jni_array.cc',
31 'android/jni_array.h', 33 'android/jni_array.h',
34 'android/jni_helper.cc',
35 'android/jni_helper.h',
36 'android/jni_registrar.cc',
37 'android/jni_registrar.h',
32 'android/jni_string.cc', 38 'android/jni_string.cc',
33 'android/jni_string.h', 39 'android/jni_string.h',
34 'android/path_utils.cc', 40 'android/path_utils.cc',
35 'android/path_utils.h', 41 'android/path_utils.h',
36 'at_exit.cc', 42 'at_exit.cc',
37 'at_exit.h', 43 'at_exit.h',
38 'atomic_ref_count.h', 44 'atomic_ref_count.h',
39 'atomic_sequence_num.h', 45 'atomic_sequence_num.h',
40 'atomicops.h', 46 'atomicops.h',
41 'atomicops_internals_x86_gcc.cc', 47 'atomicops_internals_x86_gcc.cc',
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 'third_party/xdg_mime/xdgmimemagic.c', 924 'third_party/xdg_mime/xdgmimemagic.c',
919 'third_party/xdg_mime/xdgmimemagic.h', 925 'third_party/xdg_mime/xdgmimemagic.h',
920 'third_party/xdg_mime/xdgmimeparent.c', 926 'third_party/xdg_mime/xdgmimeparent.c',
921 'third_party/xdg_mime/xdgmimeparent.h', 927 'third_party/xdg_mime/xdgmimeparent.h',
922 ], 928 ],
923 }, 929 },
924 ], 930 ],
925 }], 931 }],
926 ], 932 ],
927 } 933 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698