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

Side by Side Diff: Source/platform/blink_platform.gyp

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 # 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'exported/WebCString.cpp', 57 'exported/WebCString.cpp',
58 'exported/WebString.cpp', 58 'exported/WebString.cpp',
59 'exported/WebCommon.cpp', 59 'exported/WebCommon.cpp',
60 ], 60 ],
61 }, { 61 }, {
62 'target_name': 'blink_platform', 62 'target_name': 'blink_platform',
63 'type': '<(component)', 63 'type': '<(component)',
64 'dependencies': [ 64 'dependencies': [
65 '../config.gyp:config', 65 '../config.gyp:config',
66 '../wtf/wtf.gyp:wtf', 66 '../wtf/wtf.gyp:wtf',
67 '../weborigin/weborigin.gyp:weborigin',
68 '<(DEPTH)/skia/skia.gyp:skia', 67 '<(DEPTH)/skia/skia.gyp:skia',
69 # FIXME: This dependency exists for CSS Custom Filters, via the file ANGLE PlatformBridge 68 # FIXME: This dependency exists for CSS Custom Filters, via the file ANGLE PlatformBridge
70 # The code touching ANGLE should really be moved into the ANGLE directory. 69 # The code touching ANGLE should really be moved into the ANGLE directory.
71 '<(DEPTH)/third_party/angle_dx11/src/build_angle.gyp:translator', 70 '<(DEPTH)/third_party/angle_dx11/src/build_angle.gyp:translator',
72 '<(DEPTH)/url/url.gyp:url_lib',
73 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 71 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
74 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 72 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
73 '<(DEPTH)/url/url.gyp:url_lib',
75 'platform_derived_sources.gyp:make_platform_derived_sources', 74 'platform_derived_sources.gyp:make_platform_derived_sources',
76 'blink_common', 75 'blink_common',
77 ], 76 ],
78 'export_dependent_settings': [ 77 'export_dependent_settings': [
79 # FIXME: This dependency exists for CSS Custom Filters, via the file ANGLE PlatformBridge 78 # FIXME: This dependency exists for CSS Custom Filters, via the file ANGLE PlatformBridge
80 # The code touching ANGLE should really be moved into the ANGLE directory. 79 # The code touching ANGLE should really be moved into the ANGLE directory.
81 '<(DEPTH)/third_party/angle_dx11/src/build_angle.gyp:translator', 80 '<(DEPTH)/third_party/angle_dx11/src/build_angle.gyp:translator',
81 '<(DEPTH)/url/url.gyp:url_lib',
82 ], 82 ],
83 'defines': [ 83 'defines': [
84 'BLINK_PLATFORM_IMPLEMENTATION=1', 84 'BLINK_PLATFORM_IMPLEMENTATION=1',
85 'INSIDE_BLINK', 85 'INSIDE_BLINK',
86 ], 86 ],
87 'include_dirs': [ 87 'include_dirs': [
88 '<(DEPTH)/third_party/angle_dx11/include', 88 '<(DEPTH)/third_party/angle_dx11/include',
89 '<(SHARED_INTERMEDIATE_DIR)/blink', 89 '<(SHARED_INTERMEDIATE_DIR)/blink',
90 ], 90 ],
91 'sources': [ 91 'sources': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'include_dirs': [ 142 'include_dirs': [
143 '<(DEPTH)/third_party/openmax_dl', 143 '<(DEPTH)/third_party/openmax_dl',
144 ], 144 ],
145 'dependencies': [ 145 'dependencies': [
146 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', 146 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl',
147 ], 147 ],
148 }], 148 }],
149 ], 149 ],
150 }], 150 }],
151 } 151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698