OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 22 matching lines...) Expand all Loading... |
33 '../build/scripts/scripts.gypi', | 33 '../build/scripts/scripts.gypi', |
34 '../build/win/precompile.gypi', | 34 '../build/win/precompile.gypi', |
35 'blink_platform.gypi', | 35 'blink_platform.gypi', |
36 ], | 36 ], |
37 'targets': [{ | 37 'targets': [{ |
38 'target_name': 'blink_common', | 38 'target_name': 'blink_common', |
39 'type': '<(component)', | 39 'type': '<(component)', |
40 'variables': { 'enable_wexit_time_destructors': 1 }, | 40 'variables': { 'enable_wexit_time_destructors': 1 }, |
41 'dependencies': [ | 41 'dependencies': [ |
42 '../config.gyp:config', | 42 '../config.gyp:config', |
| 43 '../heap/blink_heap.gyp:blink_heap', |
43 '../wtf/wtf.gyp:wtf', | 44 '../wtf/wtf.gyp:wtf', |
44 # FIXME: Can we remove the dependency on Skia? | 45 # FIXME: Can we remove the dependency on Skia? |
45 '<(DEPTH)/skia/skia.gyp:skia', | 46 '<(DEPTH)/skia/skia.gyp:skia', |
46 ], | 47 ], |
47 'all_dependent_settings': { | 48 'all_dependent_settings': { |
48 'include_dirs': [ | 49 'include_dirs': [ |
49 '..', | 50 '..', |
50 ], | 51 ], |
51 }, | 52 }, |
52 'export_dependent_settings': [ | 53 'export_dependent_settings': [ |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 ], | 119 ], |
119 }, | 120 }, |
120 }], | 121 }], |
121 ], | 122 ], |
122 }, | 123 }, |
123 { | 124 { |
124 'target_name': 'blink_platform', | 125 'target_name': 'blink_platform', |
125 'type': '<(component)', | 126 'type': '<(component)', |
126 'dependencies': [ | 127 'dependencies': [ |
127 '../config.gyp:config', | 128 '../config.gyp:config', |
| 129 '../heap/blink_heap.gyp:blink_heap', |
128 '../wtf/wtf.gyp:wtf', | 130 '../wtf/wtf.gyp:wtf', |
129 'blink_common', | 131 'blink_common', |
130 'blink_prerequisites', | 132 'blink_prerequisites', |
131 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', | 133 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', |
132 '<(DEPTH)/skia/skia.gyp:skia', | 134 '<(DEPTH)/skia/skia.gyp:skia', |
133 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 135 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
134 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 136 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
135 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | 137 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', |
136 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', | 138 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', |
137 '<(DEPTH)/third_party/ots/ots.gyp:ots', | 139 '<(DEPTH)/third_party/ots/ots.gyp:ots', |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 ['OS=="android"', { | 420 ['OS=="android"', { |
419 'cflags!': ['-mthumb'], | 421 'cflags!': ['-mthumb'], |
420 }], | 422 }], |
421 ], | 423 ], |
422 },{ # target_arch!="arm" | 424 },{ # target_arch!="arm" |
423 'type': 'none', | 425 'type': 'none', |
424 }], | 426 }], |
425 ], | 427 ], |
426 }], | 428 }], |
427 } | 429 } |
OLD | NEW |