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

Side by Side Diff: Source/yarr/yarr.gyp

Issue 14238015: Move Source/WTF/wtf to Source/wtf (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 # 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 29 matching lines...) Expand all
40 # with upcoming c++0x types. 40 # with upcoming c++0x types.
41 'cflags_cc': ['-Wno-c++0x-compat'], 41 'cflags_cc': ['-Wno-c++0x-compat'],
42 }, 42 },
43 }], 43 }],
44 ], 44 ],
45 'targets': [ 45 'targets': [
46 { 46 {
47 'target_name': 'yarr', 47 'target_name': 'yarr',
48 'type': 'static_library', 48 'type': 'static_library',
49 'dependencies': [ 49 'dependencies': [
50 '../WTF/WTF.gyp/WTF.gyp:wtf', 50 '../wtf/wtf.gyp:wtf',
51 ], 51 ],
52 'variables': { 'optimize': 'max' }, 52 'variables': { 'optimize': 'max' },
53 'actions': [ 53 'actions': [
54 { 54 {
55 'action_name': 'generate_regex_tables', 55 'action_name': 'generate_regex_tables',
56 'inputs': [ 56 'inputs': [
57 'create_regex_tables', 57 'create_regex_tables',
58 ], 58 ],
59 'arguments': [ 59 'arguments': [
60 '--no-tables', 60 '--no-tables',
(...skipping 19 matching lines...) Expand all
80 'YarrPattern.h', 80 'YarrPattern.h',
81 'YarrSyntaxChecker.cpp', 81 'YarrSyntaxChecker.cpp',
82 'YarrSyntaxChecker.h', 82 'YarrSyntaxChecker.h',
83 ], 83 ],
84 'direct_dependent_settings': { 84 'direct_dependent_settings': {
85 'include_dirs': [ 85 'include_dirs': [
86 '..', 86 '..',
87 ], 87 ],
88 }, 88 },
89 'export_dependent_settings': [ 89 'export_dependent_settings': [
90 '../WTF/WTF.gyp/WTF.gyp:wtf', 90 '../wtf/wtf.gyp:wtf',
91 ], 91 ],
92 'conditions': [ 92 'conditions': [
93 ['OS=="win"', { 93 ['OS=="win"', {
94 # Disable c4267 warnings until we fix size_t to int truncations. 94 # Disable c4267 warnings until we fix size_t to int truncations.
95 'msvs_disabled_warnings': [4267, ], 95 'msvs_disabled_warnings': [4267, ],
96 }], 96 }],
97 ], 97 ],
98 }, 98 },
99 ], 99 ],
100 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698