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 24 matching lines...) Expand all Loading... |
35 'enable_oilpan%': 0, | 35 'enable_oilpan%': 0, |
36 # If set to 1 (default) and using clang, the Blink GC plugin will check the | 36 # If set to 1 (default) and using clang, the Blink GC plugin will check the |
37 # usage of the garbage-collection infrastructure during compilation. | 37 # usage of the garbage-collection infrastructure during compilation. |
38 'blink_gc_plugin%': 1, | 38 'blink_gc_plugin%': 1, |
39 # If set to 1 together with blink_gc_plugin, the Blink GC plugin will dump | 39 # If set to 1 together with blink_gc_plugin, the Blink GC plugin will dump |
40 # points-to graph files for each compilation unit. | 40 # points-to graph files for each compilation unit. |
41 'blink_gc_plugin_dump_graph%': 0, | 41 'blink_gc_plugin_dump_graph%': 0, |
42 }, | 42 }, |
43 'targets': [ | 43 'targets': [ |
44 { | 44 { |
| 45 # GN version: //third_party/WebKit/Source:config |
| 46 # (In GN this is a config rather than a target.) |
45 'target_name': 'config', | 47 'target_name': 'config', |
46 'type': 'none', | 48 'type': 'none', |
47 'direct_dependent_settings': { | 49 'direct_dependent_settings': { |
48 'include_dirs': [ | 50 'include_dirs': [ |
49 '.', | 51 '.', |
50 '..', | 52 '..', |
51 ], | 53 ], |
52 'msvs_disabled_warnings': [ | 54 'msvs_disabled_warnings': [ |
53 4305, 4324, 4714, 4800, 4996, | 55 4305, 4324, 4714, 4800, 4996, |
54 ], | 56 ], |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'xcode_settings': { | 130 'xcode_settings': { |
129 'WARNING_CFLAGS!': ['-Wglobal-constructors'], | 131 'WARNING_CFLAGS!': ['-Wglobal-constructors'], |
130 }, | 132 }, |
131 'variables': { | 133 'variables': { |
132 'chromium_code': 1, | 134 'chromium_code': 1, |
133 }, | 135 }, |
134 }, | 136 }, |
135 } | 137 } |
136 ], | 138 ], |
137 } | 139 } |
OLD | NEW |