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

Side by Side Diff: ppapi/ppapi.gyp

Issue 5854003: Remove CrOS hack from ppapi.gyp that made the include directories work. This... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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
« no previous file with comments | « chrome/browser/ui/views/info_bubble.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../third_party/mesa/mesa.gypi', 7 '../third_party/mesa/mesa.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, # Use higher warning level. 10 'chromium_code': 1, # Use higher warning level.
(...skipping 15 matching lines...) Expand all
26 }], 26 }],
27 ], 27 ],
28 }, 28 },
29 'targets': [ 29 'targets': [
30 { 30 {
31 'target_name': 'ppapi_c', 31 'target_name': 'ppapi_c',
32 'type': 'none', 32 'type': 'none',
33 'all_dependent_settings': { 33 'all_dependent_settings': {
34 'include_dirs': [ 34 'include_dirs': [
35 '..', 35 '..',
36 # HOLEY (*#@$@ing #&$^@*&$^. ChromeOS depends on having
37 # "third_party" in the include path which the old version of this
38 # project did. This is a temporary hack to keep the build going.
39 '../third_party',
40 ], 36 ],
41 }, 37 },
42 'sources': [ 38 'sources': [
43 'c/pp_bool.h', 39 'c/pp_bool.h',
44 'c/pp_completion_callback.h', 40 'c/pp_completion_callback.h',
45 'c/pp_errors.h', 41 'c/pp_errors.h',
46 'c/pp_input_event.h', 42 'c/pp_input_event.h',
47 'c/pp_instance.h', 43 'c/pp_instance.h',
48 'c/pp_macros.h', 44 'c/pp_macros.h',
49 'c/pp_module.h', 45 'c/pp_module.h',
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 ['OS=="win"', { 666 ['OS=="win"', {
671 }], 667 }],
672 ['OS=="linux"', { 668 ['OS=="linux"', {
673 }], 669 }],
674 ['OS=="mac"', { 670 ['OS=="mac"', {
675 }] 671 }]
676 ], 672 ],
677 }, 673 },
678 ], 674 ],
679 } 675 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/info_bubble.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698