Chromium Code Reviews| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 'exported/WebCommon.cpp', | 57 'exported/WebCommon.cpp', |
| 58 ], | 58 ], |
| 59 }, { | 59 }, { |
| 60 'target_name': 'blink_platform', | 60 'target_name': 'blink_platform', |
| 61 'type': '<(component)', | 61 'type': '<(component)', |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '../config.gyp:config', | 63 '../config.gyp:config', |
| 64 '../wtf/wtf.gyp:wtf', | 64 '../wtf/wtf.gyp:wtf', |
| 65 '../weborigin/weborigin.gyp:weborigin', | 65 '../weborigin/weborigin.gyp:weborigin', |
| 66 '<(DEPTH)/skia/skia.gyp:skia', | 66 '<(DEPTH)/skia/skia.gyp:skia', |
| 67 '<(DEPTH)/third_party/angle_dx11/src/build_angle.gyp:translator_glsl', | |
|
abarth-chromium
2013/10/03 16:45:02
Can you add comments about what these dependencies
| |
| 67 '<(DEPTH)/url/url.gyp:url_lib', | 68 '<(DEPTH)/url/url.gyp:url_lib', |
| 68 'blink_common', | 69 'blink_common', |
| 69 ], | 70 ], |
| 70 'defines': [ | 71 'defines': [ |
| 71 'BLINK_PLATFORM_IMPLEMENTATION=1', | 72 'BLINK_PLATFORM_IMPLEMENTATION=1', |
| 72 'INSIDE_BLINK', | 73 'INSIDE_BLINK', |
| 73 ], | 74 ], |
| 75 'include_dirs': [ | |
| 76 '<(DEPTH)/third_party/angle_dx11/include', | |
|
abarth-chromium
2013/10/03 16:45:02
Here too.
| |
| 77 ], | |
| 74 'sources': [ | 78 'sources': [ |
| 75 '<@(platform_files)', | 79 '<@(platform_files)', |
| 76 ], | 80 ], |
| 77 'conditions': [ | 81 'conditions': [ |
| 78 ['OS=="win"', { | 82 ['OS=="win"', { |
| 79 'sources/': [ | 83 'sources/': [ |
| 80 ['exclude', 'Posix\\.cpp$'], | 84 ['exclude', 'Posix\\.cpp$'], |
| 81 ], | 85 ], |
| 82 }, { # OS!="win" | 86 }, { # OS!="win" |
| 83 'sources/': [ | 87 'sources/': [ |
| 84 ['exclude', 'Win\\.cpp$'], | 88 ['exclude', 'Win\\.cpp$'], |
| 85 ], | 89 ], |
| 86 }], | 90 }], |
| 87 ], | 91 ], |
| 88 }], | 92 }], |
| 89 } | 93 } |
| OLD | NEW |