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

Side by Side Diff: third_party/npapi/npapi.gyp

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 years, 3 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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': [
7 '../../build/common.gypi',
8 ],
9 'targets': [ 6 'targets': [
10 { 7 {
11 'target_name': 'npapi', 8 'target_name': 'npapi',
12 'type': 'none', 9 'type': 'none',
13 'direct_dependent_settings': { 10 'direct_dependent_settings': {
14 'include_dirs': [ 11 'include_dirs': [
15 # Some things #include "bindings/npapi.h" and others just #include 12 # Some things #include "bindings/npapi.h" and others just #include
16 # "npapi.h". Account for both flavors. 13 # "npapi.h". Account for both flavors.
17 '.', 14 '.',
18 'bindings', 15 'bindings',
19 ], 16 ],
20 }, 17 },
21 }, 18 },
22 ], 19 ],
23 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698